Author: bdelacretaz
Date: Tue May 5 09:57:28 2009
New Revision: 771648
URL: http://svn.apache.org/viewvc?rev=771648&view=rev
Log:
SLING-904 - osgiworker bundle skeleton
Added:
incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/ (with
props)
incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/pom.xml
(with props)
incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/src/
incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/src/main/
incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/src/main/java/
incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/src/main/java/org/
incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/src/main/java/org/apache/
incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/src/main/java/org/apache/sling/
incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/src/main/java/org/apache/sling/jcr/
incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/src/main/java/org/apache/sling/jcr/jcrinstall/
incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/src/main/java/org/apache/sling/jcr/jcrinstall/osgiworker/
Propchange: incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Tue May 5 09:57:28 2009
@@ -0,0 +1,13 @@
+target
+bin
+derby.log
+*.iml
+*.ipr
+*.iws
+.settings
+.project
+.classpath
+.externalToolBuilders
+maven-eclipse.xml
+
+
Added: incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/pom.xml
URL:
http://svn.apache.org/viewvc/incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/pom.xml?rev=771648&view=auto
==============================================================================
--- incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/pom.xml
(added)
+++ incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/pom.xml Tue
May 5 09:57:28 2009
@@ -0,0 +1,89 @@
+<?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>org.apache.sling.jcr.jcrinstall.parent</artifactId>
+ <version>2.0.3-incubator-SNAPSHOT</version>
+ <relativePath>../</relativePath>
+ </parent>
+
+ <artifactId>org.apache.sling.jcr.jcrinstall.osgiworker</artifactId>
+ <version>2.0.3-incubator-SNAPSHOT</version>
+ <packaging>bundle</packaging>
+
+ <name>Apache Sling JCR OSGi Installer - OSGi worker</name>
+ <description>
+ Implements the OSGi-specific parts of the jcrinstall service,
+ with as few dependencies as possible so that the service is
+ not stopped when restarting other bundles.
+ </description>
+
+ <scm>
+
<connection>scm:svn:http://svn.apache.org/repos/asf/incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker</connection>
+
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker</developerConnection>
+
<url>http://svn.apache.org/viewvc/incubator/sling/whiteboard/jcrinstall</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>
+ <Export-Package>
+ org.apache.sling.jcr.jcrinstall.osgiworker
+ </Export-Package>
+
<Private-Package>org.apache.sling.jcr.jcrinstall.osgiworker.*</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>org.slf4j</groupId>
+ <artifactId>slf4j-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.sling</groupId>
+ <artifactId>org.apache.sling.commons.testing</artifactId>
+ <version>2.0.3-incubator-SNAPSHOT</version>
+ <scope>test</scope>
+ </dependency>
+ </dependencies>
+</project>
Propchange:
incubator/sling/trunk/contrib/extensions/jcrinstall/osgiworker/pom.xml
------------------------------------------------------------------------------
svn:eol-style = native