You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ga...@apache.org on 2009/04/14 02:29:04 UTC

svn commit: r764653 - in /geronimo/sandbox/blueprint: blueprint-api/ blueprint-api/pom.xml org.apache.felix.blueprint/pom.xml pom.xml

Author: gawor
Date: Tue Apr 14 00:29:03 2009
New Revision: 764653

URL: http://svn.apache.org/viewvc?rev=764653&view=rev
Log:
copy blueprint api

Added:
    geronimo/sandbox/blueprint/blueprint-api/   (props changed)
      - copied from r764652, geronimo/sandbox/gawor/rfc124/rfc124-api/
Modified:
    geronimo/sandbox/blueprint/blueprint-api/pom.xml
    geronimo/sandbox/blueprint/org.apache.felix.blueprint/pom.xml
    geronimo/sandbox/blueprint/pom.xml

Propchange: geronimo/sandbox/blueprint/blueprint-api/
------------------------------------------------------------------------------
    svn:mergeinfo = 

Modified: geronimo/sandbox/blueprint/blueprint-api/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/blueprint/blueprint-api/pom.xml?rev=764653&r1=764652&r2=764653&view=diff
==============================================================================
--- geronimo/sandbox/blueprint/blueprint-api/pom.xml (original)
+++ geronimo/sandbox/blueprint/blueprint-api/pom.xml Tue Apr 14 00:29:03 2009
@@ -17,13 +17,14 @@
 <project>
     <modelVersion>4.0.0</modelVersion>
     <parent>
-        <groupId>org.apache.geronimo.osgi</groupId>
-        <artifactId>rfc124</artifactId>
-        <version>1.0-SNAPSHOT</version>
+        <groupId>org.apache.felix</groupId>
+        <artifactId>blueprint</artifactId>
+        <version>1.0.0-SNAPSHOT</version>
     </parent>
-    <artifactId>rfc124-api</artifactId>
+
+    <artifactId>blueprint-api</artifactId>
     <packaging>jar</packaging>
-    <name>RFC 124 API</name>
+    <name>Blueprint API</name>
     <build>
         <plugins>
             <plugin>

Modified: geronimo/sandbox/blueprint/org.apache.felix.blueprint/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/blueprint/org.apache.felix.blueprint/pom.xml?rev=764653&r1=764652&r2=764653&view=diff
==============================================================================
--- geronimo/sandbox/blueprint/org.apache.felix.blueprint/pom.xml (original)
+++ geronimo/sandbox/blueprint/org.apache.felix.blueprint/pom.xml Tue Apr 14 00:29:03 2009
@@ -40,13 +40,11 @@
           <groupId>org.apache.felix</groupId>
           <artifactId>org.osgi.core</artifactId>
           <version>1.2.0</version>
-          <scope>provided</scope>
       </dependency>
       <dependency>
           <groupId>org.apache.felix</groupId>
           <artifactId>org.osgi.compendium</artifactId>
           <version>1.2.0</version>
-          <scope>provided</scope>
       </dependency>
   </dependencies>
 
@@ -68,9 +66,6 @@
                     <instructions>
                         <Export-Package>org.apache.felix.blueprint*;version="${pom.version}"</Export-Package>
                         <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
-                        <IPOJO-Extension>
-                            blueprint:org.apache.felix.blueprint.ipojo.BlueprintFactory 
-                        </IPOJO-Extension>
                     </instructions>
                 </configuration>
             </plugin>

Modified: geronimo/sandbox/blueprint/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/blueprint/pom.xml?rev=764653&r1=764652&r2=764653&view=diff
==============================================================================
--- geronimo/sandbox/blueprint/pom.xml (original)
+++ geronimo/sandbox/blueprint/pom.xml Tue Apr 14 00:29:03 2009
@@ -31,7 +31,28 @@
     <version>1.0.0-SNAPSHOT</version>
     <packaging>pom</packaging>
 
+    <dependencyManagement>
+        <dependencies>
+            <dependency>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>org.osgi.core</artifactId>
+                <version>1.2.0</version>
+            </dependency>
+            <dependency>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>org.osgi.compendium</artifactId>
+                <version>1.2.0</version>
+            </dependency>
+            <dependency>
+                <groupId>junit</groupId>
+                <artifactId>junit</artifactId>
+                <version>3.8.2</version>
+            </dependency>
+        </dependencies>
+    </dependencyManagement>
+
     <modules>
+        <module>blueprint-api</module>
         <module>org.apache.felix.blueprint</module>
         <module>itests</module>
     </modules>