Created
June 4, 2012 15:51
-
-
Save efroese/2869165 to your computer and use it in GitHub Desktop.
remove sling from maven-launchpad-plugin output
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!-- | |
Licensed to the Sakai Foundation (SF) under one | |
or more contributor license agreements. See the NOTICE file | |
distributed with this work for additional information | |
regarding copyright ownership. The SF licenses this file | |
to you under the Apache License, Version 2.0 (the | |
"License"); you may not use this file except in compliance | |
with the License. You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, | |
software distributed under the License is distributed on an | |
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | |
KIND, either express or implied. See the License for the | |
specific language governing permissions and limitations under the License. | |
--> | |
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<parent> | |
<artifactId>base</artifactId> | |
<groupId>org.sakaiproject.nakamura</groupId> | |
<version>1.3-SNAPSHOT</version> | |
<relativePath>../../pom.xml</relativePath> | |
</parent> | |
<modelVersion>4.0.0</modelVersion> | |
<artifactId>org.sakaiproject.nakamura.preview</artifactId> | |
<packaging>bundle</packaging> | |
<name>Sakai Nakamura :: Preview Processor</name> | |
<version>1.3-SNAPSHOT</version> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.sling</groupId> | |
<artifactId>maven-launchpad-plugin</artifactId> | |
<executions> | |
<execution> | |
<id>prepare-package</id> | |
<goals> | |
<goal>prepare-package</goal> | |
</goals> | |
<configuration> | |
<includeDefaultBundles>false</includeDefaultBundles> | |
</configuration> | |
</execution> | |
<execution> | |
<id>attach-bundle-list</id> | |
<goals> | |
<goal>attach-bundle-list</goal> | |
</goals> | |
<configuration> | |
<includeDefaultBundles>false</includeDefaultBundles> | |
</configuration> | |
</execution> | |
<execution> | |
<id>create-karaf-descriptor</id> | |
<goals> | |
<goal>create-karaf-descriptor</goal> | |
</goals> | |
<configuration> | |
<includeDefaultBundles>false</includeDefaultBundles> | |
<exclusions> | |
<exclusion>org.apache.felix:org.apache.felix.configadmin</exclusion> | |
<exclusion>org.apache.felix:org.apache.felix.webconsole</exclusion> | |
</exclusions> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.felix</groupId> | |
<artifactId>maven-scr-plugin</artifactId> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.felix</groupId> | |
<artifactId>maven-bundle-plugin</artifactId> | |
<extensions>true</extensions> | |
<configuration> | |
<instructions> | |
<Bundle-Category>sakai-nakamura</Bundle-Category> | |
<Private-Package>org.sakaiproject.nakamura.preview</Private-Package> | |
<Import-Package>*</Import-Package> | |
</instructions> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
<dependencies> | |
<dependency> | |
<groupId>org.apache.felix</groupId> | |
<artifactId>org.apache.felix.scr.annotations</artifactId> | |
</dependency> | |
<!-- osgi --> | |
<dependency> | |
<groupId>org.apache.felix</groupId> | |
<artifactId>org.osgi.core</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.felix</groupId> | |
<artifactId>org.osgi.compendium</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.sling</groupId> | |
<artifactId>org.apache.sling.commons.osgi</artifactId> | |
</dependency> | |
<!-- logging --> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-api</artifactId> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.mockito</groupId> | |
<artifactId>mockito-all</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>commons-httpclient</groupId> | |
<artifactId>commons-httpclient</artifactId> | |
<version>3.1</version> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>commons-codec</groupId> | |
<artifactId>commons-codec</artifactId> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>commons-io</groupId> | |
<artifactId>commons-io</artifactId> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>commons-lang</groupId> | |
<artifactId>commons-lang</artifactId> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>com.artofsolving</groupId> | |
<artifactId>jodconverter</artifactId> | |
<version>2.2.1</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.sanselan</groupId> | |
<artifactId>sanselan</artifactId> | |
<version>0.97-incubator</version> | |
</dependency> | |
<dependency> | |
<groupId>net.sf.json-lib</groupId> | |
<artifactId>json-lib</artifactId> | |
<version>2.4</version> | |
<classifier>jdk15</classifier> | |
</dependency> | |
<dependency> | |
<groupId>com.google.guava</groupId> | |
<artifactId>guava</artifactId> | |
<version>r09</version> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.sakaiproject.nakamura</groupId> | |
<artifactId>org.sakaiproject.nakamura.termextract</artifactId> | |
<version>1.3-SNAPSHOT</version> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.tika</groupId> | |
<artifactId>tika-core</artifactId> | |
<version>1.1</version> | |
<type>bundle</type> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.tika</groupId> | |
<artifactId>tika-parsers</artifactId> | |
<version>1.1</version> | |
<type>bundle</type> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.pdfbox</groupId> | |
<artifactId>pdfbox</artifactId> | |
<version>1.6.0</version> | |
<type>bundle</type> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.velocity</groupId> | |
<artifactId>velocity</artifactId> | |
<version>1.7</version> | |
<type>jar</type> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>commons-cli</groupId> | |
<artifactId>commons-cli</artifactId> | |
<version>1.2</version> | |
<type>jar</type> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>ch.qos.logback</groupId> | |
<artifactId>logback-classic</artifactId> | |
<version>1.0.3</version> | |
<type>jar</type> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>ch.qos.logback</groupId> | |
<artifactId>logback-core</artifactId> | |
<version>1.0.3</version> | |
<type>pom</type> | |
<scope>compile</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.apache.pdfbox</groupId> | |
<artifactId>fontbox</artifactId> | |
<version>1.6.0</version> | |
<type>bundle</type> | |
<scope>compile</scope> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment