You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by da...@apache.org on 2010/07/16 09:10:33 UTC

svn commit: r964698 - in /incubator/aries/trunk/spi-fly: pom.xml spi-fly-core/ spi-fly-core/pom.xml spi-fly-core/src/ src/

Author: davidb
Date: Fri Jul 16 07:10:33 2010
New Revision: 964698

URL: http://svn.apache.org/viewvc?rev=964698&view=rev
Log:
Changes as suggested by Bartosz Kowalewski in ARIES-353

Added:
    incubator/aries/trunk/spi-fly/spi-fly-core/
    incubator/aries/trunk/spi-fly/spi-fly-core/pom.xml
    incubator/aries/trunk/spi-fly/spi-fly-core/src/
      - copied from r964689, incubator/aries/trunk/spi-fly/src/
Removed:
    incubator/aries/trunk/spi-fly/src/
Modified:
    incubator/aries/trunk/spi-fly/pom.xml

Modified: incubator/aries/trunk/spi-fly/pom.xml
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/spi-fly/pom.xml?rev=964698&r1=964697&r2=964698&view=diff
==============================================================================
--- incubator/aries/trunk/spi-fly/pom.xml (original)
+++ incubator/aries/trunk/spi-fly/pom.xml Fri Jul 16 07:10:33 2010
@@ -10,6 +10,8 @@
 
     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
@@ -17,7 +19,8 @@
  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">
+<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.aries</groupId>
@@ -26,72 +29,63 @@
     </parent>
 
     <groupId>org.apache.aries.spifly</groupId>
-    <artifactId>org.apache.aries.spifly</artifactId>
-    <packaging>bundle</packaging>
-    <name>Apache Aries SPI Fly</name> 
+    <artifactId>spifly</artifactId>
+    <name>Apache Aries SPI Fly</name>
+    <version>0.2-incubating-SNAPSHOT</version>
+    <packaging>pom</packaging>
+
     <description>
-This bundle contains an extender that facilitates the use
-of JRE SPI providers (components typically plugged in to the 
-JRE through META-INF/services resources).
+        SPI support for OSGi
     </description>
-    
+
     <scm>
         <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/aries/trunk/spi-fly</connection>
         <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/aries/trunk/spi-fly</developerConnection>
         <url>http://svn.apache.org/viewvc/incubator/aries/trunk/spi-fly</url>
     </scm>
-    <dependencies>
-        <dependency>
-            <groupId>org.osgi</groupId>
-            <artifactId>org.osgi.core</artifactId>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.osgi</groupId>
-            <artifactId>org.osgi.compendium</artifactId>
-            <scope>provided</scope>
-        </dependency>
 
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>org.apache.aries</groupId>
+                <artifactId>org.apache.aries.util</artifactId>
+                <version>0.2-incubating-SNAPSHOT</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.aries.testsupport</groupId>
+                <artifactId>org.apache.aries.testsupport.unit</artifactId>
+                <version>0.2-incubating-SNAPSHOT</version>
+                <scope>test</scope>
+            </dependency>
+
+            <dependency>
+                <groupId>org.easymock</groupId>
+                <artifactId>easymock</artifactId>
+                <version>2.5.2</version>
+                <scope>test</scope>
+            </dependency>
+            <dependency>
+                <groupId>org.easymock</groupId>
+                <artifactId>easymockclassextension</artifactId>
+                <version>2.5.2</version>
+                <scope>test</scope>
+            </dependency>
+
+            <!-- internal -->
+
+        </dependencies>
+    </dependencyManagement>
+
+    <dependencies>
         <dependency>
             <groupId>junit</groupId>
             <artifactId>junit</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.easymock</groupId>
-            <artifactId>easymock</artifactId>
-            <version>2.5.2</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.easymock</groupId>
-            <artifactId>easymockclassextension</artifactId>
-            <version>2.5.2</version>
-            <scope>test</scope>
-        </dependency>
     </dependencies>
 
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-                <configuration>
-                    <instructions>
-                        <Import-Package>
-                            *
-                        </Import-Package>
-                        <Export-Package></Export-Package>
-                        <Private-Package>
-                            org.apache.aries.spifly
-                        </Private-Package>
-                        <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
-                        <Bundle-Activator>org.apache.aries.spifly.Activator</Bundle-Activator>
-                    </instructions>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-</project>
-
+    <modules>
+        <module>spi-fly-core</module>
+    </modules>
 
+</project>

Added: incubator/aries/trunk/spi-fly/spi-fly-core/pom.xml
URL: http://svn.apache.org/viewvc/incubator/aries/trunk/spi-fly/spi-fly-core/pom.xml?rev=964698&view=auto
==============================================================================
--- incubator/aries/trunk/spi-fly/spi-fly-core/pom.xml (added)
+++ incubator/aries/trunk/spi-fly/spi-fly-core/pom.xml Fri Jul 16 07:10:33 2010
@@ -0,0 +1,87 @@
+<?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.aries.spifly</groupId>
+        <artifactId>spifly</artifactId>
+        <version>0.2-incubating-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>org.apache.aries.spifly.core</artifactId>
+    <packaging>bundle</packaging>
+    <name>Apache Aries SPI Fly Core</name>
+    <description>
+This bundle contains an extender that facilitates the use
+of JRE SPI providers (components typically plugged in to the 
+JRE through META-INF/services resources).
+    </description>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.core</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.osgi</groupId>
+            <artifactId>org.osgi.compendium</artifactId>
+            <scope>provided</scope>
+        </dependency>
+
+        <dependency>
+            <groupId>org.easymock</groupId>
+            <artifactId>easymock</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.easymock</groupId>
+            <artifactId>easymockclassextension</artifactId>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <configuration>
+                    <instructions>
+                        <Import-Package>
+                            *
+                        </Import-Package>
+                        <Export-Package></Export-Package>
+                        <Private-Package>
+                            org.apache.aries.spifly
+                        </Private-Package>
+                        <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
+                        <Bundle-Activator>org.apache.aries.spifly.Activator</Bundle-Activator>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>
+
+