You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by fm...@apache.org on 2008/01/09 13:11:49 UTC

svn commit: r610359 - /incubator/sling/trunk/launcher/app/pom.xml

Author: fmeschbe
Date: Wed Jan  9 04:11:26 2008
New Revision: 610359

URL: http://svn.apache.org/viewvc?rev=610359&view=rev
Log:
Need the OPS4J maven repository to get the pax-web bundle.

Modified:
    incubator/sling/trunk/launcher/app/pom.xml

Modified: incubator/sling/trunk/launcher/app/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sling/trunk/launcher/app/pom.xml?rev=610359&r1=610358&r2=610359&view=diff
==============================================================================
--- incubator/sling/trunk/launcher/app/pom.xml (original)
+++ incubator/sling/trunk/launcher/app/pom.xml Wed Jan  9 04:11:26 2008
@@ -1,21 +1,21 @@
 <?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.
+    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"
@@ -244,7 +244,7 @@
                 </plugins>
             </build>
         </profile>
-        
+
         <!--
             The "full" profile also includes all Sling bundles plus
             the dependencies of Sling from the Apache Felix Commons
@@ -347,7 +347,9 @@
                 </dependency>
                 <dependency>
                     <groupId>org.apache.sling</groupId>
-                    <artifactId>org.apache.sling.commons.mime</artifactId>
+                    <artifactId>
+                        org.apache.sling.commons.mime
+                    </artifactId>
                     <version>2.0.0-incubator-SNAPSHOT</version>
                 </dependency>
                 <dependency>
@@ -357,12 +359,16 @@
                 </dependency>
                 <dependency>
                     <groupId>org.apache.sling</groupId>
-                    <artifactId>org.apache.sling.jcr.resource</artifactId>
+                    <artifactId>
+                        org.apache.sling.jcr.resource
+                    </artifactId>
                     <version>2.0.0-incubator-SNAPSHOT</version>
                 </dependency>
                 <dependency>
                     <groupId>org.apache.sling</groupId>
-                    <artifactId>org.apache.sling.jcr.jackrabbit.server</artifactId>
+                    <artifactId>
+                        org.apache.sling.jcr.jackrabbit.server
+                    </artifactId>
                     <version>2.0.0-incubator-SNAPSHOT</version>
                 </dependency>
                 <dependency>
@@ -374,31 +380,55 @@
                 </dependency>
                 <dependency>
                     <groupId>org.apache.sling</groupId>
-                    <artifactId>org.apache.sling.servlet.resolver</artifactId>
+                    <artifactId>
+                        org.apache.sling.servlet.resolver
+                    </artifactId>
                     <version>2.0.0-incubator-SNAPSHOT</version>
                 </dependency>
                 <dependency>
                     <groupId>org.apache.sling</groupId>
-                    <artifactId>org.apache.sling.scripting.api</artifactId>
+                    <artifactId>
+                        org.apache.sling.scripting.api
+                    </artifactId>
                     <version>2.0.0-incubator-SNAPSHOT</version>
                 </dependency>
                 <dependency>
                     <groupId>org.apache.sling</groupId>
-                    <artifactId>org.apache.sling.scripting.resolver</artifactId>
+                    <artifactId>
+                        org.apache.sling.scripting.resolver
+                    </artifactId>
                     <version>2.0.0-incubator-SNAPSHOT</version>
                 </dependency>
                 <dependency>
                     <groupId>org.apache.sling</groupId>
-                    <artifactId>org.apache.sling.scripting.jsp</artifactId>
+                    <artifactId>
+                        org.apache.sling.scripting.jsp
+                    </artifactId>
                     <version>2.0.0-incubator-SNAPSHOT</version>
                 </dependency>
                 <dependency>
                     <groupId>org.apache.sling</groupId>
-                    <artifactId>org.apache.sling.scripting.jsp.taglib</artifactId>
+                    <artifactId>
+                        org.apache.sling.scripting.jsp.taglib
+                    </artifactId>
                     <version>2.0.0-incubator-SNAPSHOT</version>
                 </dependency>
             </dependencies>
         </profile>
     </profiles>
+
+    <repositories>
+        <repository>
+            <id>OPS4J</id>
+            <name>OPS4J Repository</name>
+            <url>http://repository.ops4j.org/maven2</url>
+            <releases>
+                <enabled>true</enabled>
+            </releases>
+            <snapshots>
+                <enabled>false</enabled>
+            </snapshots>
+        </repository>
+    </repositories>
 </project>