You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ie...@apache.org on 2013/03/24 00:27:45 UTC

svn commit: r1460245 - in /sling/whiteboard/ieb/oak: ./ pom.xml

Author: ieb
Date: Sat Mar 23 23:27:45 2013
New Revision: 1460245

URL: http://svn.apache.org/r1460245
Log:
SLING-2788 partial launchpad configuration, still misisng org.apache.jackrabbit.test export on startup. Work in progress.

Added:
    sling/whiteboard/ieb/oak/
    sling/whiteboard/ieb/oak/pom.xml   (with props)

Added: sling/whiteboard/ieb/oak/pom.xml
URL: http://svn.apache.org/viewvc/sling/whiteboard/ieb/oak/pom.xml?rev=1460245&view=auto
==============================================================================
--- sling/whiteboard/ieb/oak/pom.xml (added)
+++ sling/whiteboard/ieb/oak/pom.xml Sat Mar 23 23:27:45 2013
@@ -0,0 +1,276 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor 
+    license agreements. See the NOTICE file distributed with this work for additional 
+    information regarding copyright ownership. The ASF 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">
+
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.sling</groupId>
+        <artifactId>sling</artifactId>
+        <version>15</version>
+        <relativePath>../../parent/pom.xml</relativePath>
+    </parent>
+
+    <artifactId>org.apache.sling.launchpad.oak</artifactId>
+    <packaging>jar</packaging>
+    <version>7-SNAPSHOT</version>
+
+    <name>Apache Sling Launchpad Oak</name>
+    <description>
+        Sling Launchpad Oak module
+    </description>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/sling/whiteboard/ieb/oak</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/whiteboard/ieb/oak</developerConnection>
+        <url>http://svn.apache.org/viewvc/sling/whiteboard/ieb/oak</url>
+    </scm>
+
+    <build>
+        <plugins>
+            <!-- this ensures that the MANIFEST.MF unpacked from the lauchpad 
+                base app bundle is used. -->
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
+                        <manifest>
+                            <addDefaultImplementationEntries>
+                                true
+                            </addDefaultImplementationEntries>
+                        </manifest>
+                    </archive>
+                </configuration>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.sling</groupId>
+                <artifactId>maven-launchpad-plugin</artifactId>
+                <version>2.1.2</version>
+                <extensions>true</extensions>
+                <executions>
+                    <execution>
+                        <id>prepare-package-jar</id>
+                        <goals>
+                            <goal>prepare-package</goal>
+                        </goals>
+                        <configuration>
+                            <packaging>jar</packaging>
+                        </configuration>
+                    </execution>
+                </executions>
+                <!-- Bind to the launchpad bundle list this jar should be 
+                    based on. -->
+                <configuration>
+                    <defaultBundleList>
+                        <version>7-SNAPSHOT</version>
+                    </defaultBundleList>
+                    <bundleExclusions>
+                    <!-- 
+                        <bundle>
+                            <groupId>org.apache.jackrabbit</groupId>
+                            <artifactId>jackrabbit-api</artifactId>
+                            <version>2.4.2</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.jackrabbit</groupId>
+                            <artifactId>jackrabbit-jcr-commons</artifactId>
+                            <version>2.4.2</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.jackrabbit</groupId>
+                            <artifactId>jackrabbit-jcr-rmi</artifactId>
+                            <version>2.4.2</version>
+                        </bundle>
+                     -->
+                        <bundle>
+                            <groupId>org.apache.jackrabbit</groupId>
+                            <artifactId>jackrabbit-spi</artifactId>
+                            <version>2.4.2</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.jackrabbit</groupId>
+                            <artifactId>jackrabbit-spi-commons</artifactId>
+                            <version>2.4.2</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.jackrabbit</groupId>
+                            <artifactId>jackrabbit-webdav</artifactId>
+                            <version>2.4.2</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.sling</groupId>
+                            <artifactId>org.apache.sling.jcr.jackrabbit.accessmanager</artifactId>
+                            <version>2.1.1-SNAPSHOT</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.sling</groupId>
+                            <artifactId>org.apache.sling.jcr.jackrabbit.server</artifactId>
+                            <version>2.1.1-SNAPSHOT</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.sling</groupId>
+                            <artifactId>org.apache.sling.jcr.jackrabbit.usermanager</artifactId>
+                            <version>2.1.1-SNAPSHOT</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.sling</groupId>
+                            <artifactId>org.apache.sling.extensions.webconsolesecurityprovider</artifactId>
+                            <version>1.0.0</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.sling</groupId>
+                            <artifactId>org.apache.sling.jcr.davex</artifactId>
+                            <version>1.1.0</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.sling</groupId>
+                            <artifactId>org.apache.sling.jcr.webdav</artifactId>
+                            <version>2.1.2</version>
+                        </bundle>
+                        <!-- 35270 Sat Mar 23 16:55:56 EST 2013 resources/bundles/15/jackrabbit-api-2.4.2.jar 
+                            335264 Sat Mar 23 16:55:58 EST 2013 resources/bundles/15/jackrabbit-jcr-commons-2.4.2.jar 
+                            411205 Sat Mar 23 16:55:58 EST 2013 resources/bundles/15/jackrabbit-jcr-rmi-2.4.2.jar 
+                            27684 Sat Mar 23 16:55:58 EST 2013 resources/bundles/15/jackrabbit-spi-2.4.2.jar 
+                            761831 Sat Mar 23 16:55:58 EST 2013 resources/bundles/15/jackrabbit-spi-commons-2.4.2.jar 
+                            315627 Sat Mar 23 16:55:58 EST 2013 resources/bundles/15/jackrabbit-webdav-2.4.2.jar 
+                            40070 Sat Mar 23 16:55:58 EST 2013 resources/bundles/15/org.apache.sling.jcr.jackrabbit.accessmanager-2.1.1-SNAPSHOT.jar 
+                            4398519 Sat Mar 23 16:55:58 EST 2013 resources/bundles/15/org.apache.sling.jcr.jackrabbit.server-2.1.1-SNAPSHOT.jar 
+                            89668 Sat Mar 23 16:55:58 EST 2013 resources/bundles/15/org.apache.sling.jcr.jackrabbit.usermanager-2.2.1-SNAPSHOT.jar -->
+                    </bundleExclusions>
+                    <additionalBundles>
+                        <bundle>
+                            <groupId>org.apache.jackrabbit</groupId>
+                            <artifactId>oak-sling</artifactId>
+                            <version>0.7-SNAPSHOT</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.jackrabbit</groupId>
+                            <artifactId>oak-core</artifactId>
+                            <version>0.7-SNAPSHOT</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.jackrabbit</groupId>
+                            <artifactId>oak-jcr</artifactId>
+                            <version>0.7-SNAPSHOT</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.jackrabbit</groupId>
+                            <artifactId>oak-commons</artifactId>
+                            <version>0.7-SNAPSHOT</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.jackrabbit</groupId>
+                            <artifactId>oak-mk-api</artifactId>
+                            <version>0.7-SNAPSHOT</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.jackrabbit</groupId>
+                            <artifactId>oak-mk</artifactId>
+                            <version>0.7-SNAPSHOT</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.jackrabbit</groupId>
+                            <artifactId>oak-mk-remote</artifactId>
+                            <version>0.7-SNAPSHOT</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.jackrabbit</groupId>
+                            <artifactId>jackrabbit-api</artifactId>
+                            <version>2.7-SNAPSHOT</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.jackrabbit</groupId>
+                            <artifactId>jackrabbit-jcr-commons</artifactId>
+                            <version>2.7-SNAPSHOT</version>
+                        </bundle>
+                        <bundle>
+                            <groupId>org.apache.jackrabbit</groupId>
+                            <artifactId>jackrabbit-jcr-tests</artifactId>
+                            <version></version>
+                        </bundle>
+                        <bundle>
+                            <groupId>com.google.guava</groupId>
+                            <artifactId>guava</artifactId>
+                            <version>13.0.1</version>
+                        </bundle>
+
+                    </additionalBundles>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    <reporting>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <configuration>
+                    <!-- No javadocs -->
+                    <excludePackageNames>
+                        org.apache.sling
+                    </excludePackageNames>
+                </configuration>
+            </plugin>
+        </plugins>
+    </reporting>
+
+    <dependencies>
+
+        <!-- The basic Sling WebApp -->
+        <!-- this order is important. The maven-launchpad-plugin tried to 
+            work out the base, which by default is the webapp since war normally comes 
+            after jar (or perhaps webapp comes after app). Putting these dependencies 
+            in in this order causes the app to get unpacked. -->
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.launchpad.base</artifactId>
+            <version>2.5.1-SNAPSHOT</version>
+            <classifier>webapp</classifier>
+            <type>war</type>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.sling</groupId>
+            <artifactId>org.apache.sling.launchpad.base</artifactId>
+            <version>2.5.1-SNAPSHOT</version>
+            <classifier>app</classifier>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>oak-sling</artifactId>
+            <version>0.7-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>oak-jcr</artifactId>
+            <version>0.7-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>jackrabbit-api</artifactId>
+            <version>2.7-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>jackrabbit-jcr-commons</artifactId>
+            <version>2.7-SNAPSHOT</version>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.jackrabbit</groupId>
+            <artifactId>jackrabbit-jcr-tests</artifactId>
+            <version>2.7-SNAPSHOT</version>
+        </dependency>
+    </dependencies>
+</project>

Propchange: sling/whiteboard/ieb/oak/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: sling/whiteboard/ieb/oak/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml