You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by cz...@apache.org on 2008/04/25 16:15:43 UTC

svn commit: r651614 - in /incubator/sling/trunk: launchpad/app/pom.xml launchpad/app/src/main/java/ launchpad/app/src/main/resources/ launchpad/webapp/src/main/java/ launchpad/webapp/src/main/webapp/WEB-INF/jcr-client.properties pom.xml

Author: cziegeler
Date: Fri Apr 25 07:15:40 2008
New Revision: 651614

URL: http://svn.apache.org/viewvc?rev=651614&view=rev
Log:
SLING-391: Create common base module for launchpad stuff.

Removed:
    incubator/sling/trunk/launchpad/app/src/main/java/
    incubator/sling/trunk/launchpad/app/src/main/resources/
    incubator/sling/trunk/launchpad/webapp/src/main/java/
    incubator/sling/trunk/launchpad/webapp/src/main/webapp/WEB-INF/jcr-client.properties
Modified:
    incubator/sling/trunk/launchpad/app/pom.xml
    incubator/sling/trunk/pom.xml

Modified: incubator/sling/trunk/launchpad/app/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/launchpad/app/pom.xml?rev=651614&r1=651613&r2=651614&view=diff
==============================================================================
--- incubator/sling/trunk/launchpad/app/pom.xml (original)
+++ incubator/sling/trunk/launchpad/app/pom.xml Fri Apr 25 07:15:40 2008
@@ -118,7 +118,7 @@
                         </goals>
                         <configuration>
                             <includeArtifactIds>
-                                org.apache.felix.framework
+                                org.apache.felix.framework,org.apache.sling.launchpad.base
                             </includeArtifactIds>
                             <excludeTransitive>true</excludeTransitive>
                             <outputDirectory>
@@ -173,6 +173,13 @@
             <groupId>org.apache.felix</groupId>
             <artifactId>org.apache.felix.framework</artifactId>
             <scope>provded</scope>
+        </dependency>
+
+        <!-- the most important bundle after the framework: logging -->
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.launchpad.base</artifactId>
+            <version>2.0.0-incubator-SNAPSHOT</version>
         </dependency>
 
         <!-- the most important bundle after the framework: logging -->

Modified: incubator/sling/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/pom.xml?rev=651614&r1=651613&r2=651614&view=diff
==============================================================================
--- incubator/sling/trunk/pom.xml (original)
+++ incubator/sling/trunk/pom.xml Fri Apr 25 07:15:40 2008
@@ -129,6 +129,7 @@
         <module>samples/webloader/ui</module>
 
         <!-- Launchpad -->
+        <module>launchpad/base</module>
         <module>launchpad/content</module>
         <module>launchpad/app</module>
         <module>launchpad/jcrapp</module>