You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by bd...@apache.org on 2008/07/28 15:18:17 UTC

svn commit: r680344 - in /incubator/sling/whiteboard/jcrbundles: ./ src/ src/main/ src/main/java/ src/main/java/org/ src/main/java/org/apache/ src/main/java/org/apache/sling/ src/main/java/org/apache/sling/jcr/ src/main/java/org/apache/sling/jcr/jcrbun...

Author: bdelacretaz
Date: Mon Jul 28 06:18:16 2008
New Revision: 680344

URL: http://svn.apache.org/viewvc?rev=680344&view=rev
Log:
SLING-587 - jcrbundles module skeleton

Added:
    incubator/sling/whiteboard/jcrbundles/   (with props)
    incubator/sling/whiteboard/jcrbundles/pom.xml   (with props)
    incubator/sling/whiteboard/jcrbundles/src/
    incubator/sling/whiteboard/jcrbundles/src/main/
    incubator/sling/whiteboard/jcrbundles/src/main/java/
    incubator/sling/whiteboard/jcrbundles/src/main/java/org/
    incubator/sling/whiteboard/jcrbundles/src/main/java/org/apache/
    incubator/sling/whiteboard/jcrbundles/src/main/java/org/apache/sling/
    incubator/sling/whiteboard/jcrbundles/src/main/java/org/apache/sling/jcr/
    incubator/sling/whiteboard/jcrbundles/src/main/java/org/apache/sling/jcr/jcrbundles/
    incubator/sling/whiteboard/jcrbundles/src/main/java/org/apache/sling/jcr/jcrbundles/JcrBundlesManager.java   (with props)
    incubator/sling/whiteboard/jcrbundles/src/test/
    incubator/sling/whiteboard/jcrbundles/src/test/java/
    incubator/sling/whiteboard/jcrbundles/src/test/java/org/
    incubator/sling/whiteboard/jcrbundles/src/test/java/org/apache/
    incubator/sling/whiteboard/jcrbundles/src/test/java/org/apache/sling/
    incubator/sling/whiteboard/jcrbundles/src/test/java/org/apache/sling/jcr/
    incubator/sling/whiteboard/jcrbundles/src/test/java/org/apache/sling/jcr/jcrbundles/
    incubator/sling/whiteboard/jcrbundles/src/test/java/org/apache/sling/jcr/jcrbundles/DummyTest.java   (with props)

Propchange: incubator/sling/whiteboard/jcrbundles/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Mon Jul 28 06:18:16 2008
@@ -0,0 +1,11 @@
+target
+bin
+derby.log
+*.iml
+*.ipr
+*.iws
+.settings
+.project
+.classpath
+.externalToolBuilders
+maven-eclipse.xml

Added: incubator/sling/whiteboard/jcrbundles/pom.xml
URL: http://svn.apache.org/viewvc/incubator/sling/whiteboard/jcrbundles/pom.xml?rev=680344&view=auto
==============================================================================
--- incubator/sling/whiteboard/jcrbundles/pom.xml (added)
+++ incubator/sling/whiteboard/jcrbundles/pom.xml Mon Jul 28 06:18:16 2008
@@ -0,0 +1,98 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+    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>4-incubator-SNAPSHOT</version>
+    <relativePath> ../../sling/parent/</relativePath>
+  </parent>
+
+  <artifactId>org.apache.sling.jcr.jcrbundles</artifactId>
+  <version>2.0.3-incubator-SNAPSHOT</version>
+  <packaging>bundle</packaging>
+
+  <name>Sling - JCR Bundles Manager</name>
+  <description> 
+    Loads OSGi bundles and their configurations from well-known 
+    locations in the JCR Repository. See SLING-587 for details. 
+  </description>
+  
+  <scm>
+    <connection> scm:svn:http://svn.apache.org/repos/asf/incubator/sling/whiteboard/jcrbundles </connection>
+    <developerConnection> scm:svn:https://svn.apache.org/repos/asf/incubator/sling/whiteboard/jcrbundles </developerConnection>
+    <url> http://svn.apache.org/viewvc/incubator/sling/whiteboard/jcrbundles </url>
+  </scm>
+  
+  <build>
+    <plugins>
+      <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>
+            <Private-Package> org.apache.sling.jcr.jcrbundles </Private-Package>
+          </instructions>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  
+  <dependencies>
+    <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>javax.servlet</groupId>
+      <artifactId>servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.jcr</groupId>
+      <artifactId>jcr</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-simple</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.sling</groupId>
+      <artifactId>org.apache.sling.commons.testing</artifactId>
+      <version>2.0.2-incubator</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  
+</project>
\ No newline at end of file

Propchange: incubator/sling/whiteboard/jcrbundles/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: incubator/sling/whiteboard/jcrbundles/src/main/java/org/apache/sling/jcr/jcrbundles/JcrBundlesManager.java
URL: http://svn.apache.org/viewvc/incubator/sling/whiteboard/jcrbundles/src/main/java/org/apache/sling/jcr/jcrbundles/JcrBundlesManager.java?rev=680344&view=auto
==============================================================================
--- incubator/sling/whiteboard/jcrbundles/src/main/java/org/apache/sling/jcr/jcrbundles/JcrBundlesManager.java (added)
+++ incubator/sling/whiteboard/jcrbundles/src/main/java/org/apache/sling/jcr/jcrbundles/JcrBundlesManager.java Mon Jul 28 06:18:16 2008
@@ -0,0 +1,22 @@
+/*
+ * 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.
+ */
+package org.apache.sling.jcr.jcrbundles;
+
+public class JcrBundlesManager {
+}
\ No newline at end of file

Propchange: incubator/sling/whiteboard/jcrbundles/src/main/java/org/apache/sling/jcr/jcrbundles/JcrBundlesManager.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/sling/whiteboard/jcrbundles/src/main/java/org/apache/sling/jcr/jcrbundles/JcrBundlesManager.java
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision Rev URL

Added: incubator/sling/whiteboard/jcrbundles/src/test/java/org/apache/sling/jcr/jcrbundles/DummyTest.java
URL: http://svn.apache.org/viewvc/incubator/sling/whiteboard/jcrbundles/src/test/java/org/apache/sling/jcr/jcrbundles/DummyTest.java?rev=680344&view=auto
==============================================================================
--- incubator/sling/whiteboard/jcrbundles/src/test/java/org/apache/sling/jcr/jcrbundles/DummyTest.java (added)
+++ incubator/sling/whiteboard/jcrbundles/src/test/java/org/apache/sling/jcr/jcrbundles/DummyTest.java Mon Jul 28 06:18:16 2008
@@ -0,0 +1,27 @@
+/*
+ * 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.
+ */
+package org.apache.sling.jcr.jcrbundles;
+
+import junit.framework.TestCase;
+
+public class DummyTest extends TestCase {
+    public void testNothing() {
+        
+    }
+}
\ No newline at end of file

Propchange: incubator/sling/whiteboard/jcrbundles/src/test/java/org/apache/sling/jcr/jcrbundles/DummyTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/sling/whiteboard/jcrbundles/src/test/java/org/apache/sling/jcr/jcrbundles/DummyTest.java
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision Rev URL