Author: fmeschbe
Date: Thu Jan 8 00:47:29 2009
New Revision: 732642
URL: http://svn.apache.org/viewvc?rev=732642&view=rev
Log:
SLING-815 Add profile "shell" which includes the Apache Felix Shell Console
(Service and Remote Shell) into the build artifact. By default the shell is
not included
Modified:
incubator/sling/trunk/launchpad/app/pom.xml
Modified: incubator/sling/trunk/launchpad/app/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/sling/trunk/launchpad/app/pom.xml?rev=732642&r1=732641&r2=732642&view=diff
==============================================================================
--- incubator/sling/trunk/launchpad/app/pom.xml (original)
+++ incubator/sling/trunk/launchpad/app/pom.xml Thu Jan 8 00:47:29 2009
@@ -563,6 +563,44 @@
</plugins>
</build>
</profile>
+ <profile>
+ <id>shell</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <version>2.0</version>
+ <executions>
+ <execution>
+ <id>copy-shell-bundles</id>
+ <goals>
+ <goal>copy</goal>
+ </goals>
+ <configuration>
+ <artifactItems>
+ <artifactItem>
+ <groupId>org.apache.felix</groupId>
+
<artifactId>org.apache.felix.shell</artifactId>
+ <version>1.0.2</version>
+ </artifactItem>
+ <artifactItem>
+ <groupId>org.apache.felix</groupId>
+
<artifactId>org.apache.felix.shell.remote</artifactId>
+ <version>1.0.2</version>
+ </artifactItem>
+ </artifactItems>
+ <excludeTransitive>true</excludeTransitive>
+ <outputDirectory>
+
${project.build.outputDirectory}/resources/1
+ </outputDirectory>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>
<repositories>