You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by ke...@apache.org on 2009/12/14 05:03:34 UTC

svn commit: r890164 - in /geronimo/specs/trunk: geronimo-atinject_1.0_spec/pom.xml geronimo-cdi_1.0_spec/pom.xml

Author: kevan
Date: Mon Dec 14 04:03:33 2009
New Revision: 890164

URL: http://svn.apache.org/viewvc?rev=890164&view=rev
Log:
GERONIMO-4985 Updates to pom.xml files

Modified:
    geronimo/specs/trunk/geronimo-atinject_1.0_spec/pom.xml
    geronimo/specs/trunk/geronimo-cdi_1.0_spec/pom.xml

Modified: geronimo/specs/trunk/geronimo-atinject_1.0_spec/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-atinject_1.0_spec/pom.xml?rev=890164&r1=890163&r2=890164&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-atinject_1.0_spec/pom.xml (original)
+++ geronimo/specs/trunk/geronimo-atinject_1.0_spec/pom.xml Mon Dec 14 04:03:33 2009
@@ -29,7 +29,7 @@
     <artifactId>geronimo-atinject_1.0_spec</artifactId>
     <packaging>bundle</packaging>
     <name>Apache Geronimo JSR-330 Spec API</name>
-    <version>1.0.0-SNAPSHOT</version>
+    <version>1.0-SNAPSHOT</version>
 
     <description>Apache Geronimo implementation of the JSR-330 Dependency Injection Spec API</description>
     <url>http://geronimo.apache.org/maven/${siteId}/${version}</url>
@@ -41,4 +41,24 @@
         </site>
     </distributionManagement>
 
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/geronimo/specs/trunk/geronimo-atinject_1.0_spec/</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/geronimo/specs/trunk/geronimo-atinject_1.0_spec/</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/geronimo/specs/trunk/geronimo-atinject_1.0_spec/</url>
+    </scm>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <configuration>
+                    <instructions>
+                        <Export-Package>javax.inject*;version=1.0</Export-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
 </project>

Modified: geronimo/specs/trunk/geronimo-cdi_1.0_spec/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/specs/trunk/geronimo-cdi_1.0_spec/pom.xml?rev=890164&r1=890163&r2=890164&view=diff
==============================================================================
--- geronimo/specs/trunk/geronimo-cdi_1.0_spec/pom.xml (original)
+++ geronimo/specs/trunk/geronimo-cdi_1.0_spec/pom.xml Mon Dec 14 04:03:33 2009
@@ -29,11 +29,28 @@
     <artifactId>geronimo-cdi_1.0_spec</artifactId>
     <packaging>bundle</packaging>
     <name>Apache Geronimo JSR-299 Spec API</name>
-    <version>1.0.0-SNAPSHOT</version>
+    <version>1.0-SNAPSHOT</version>
 
     <description>Apache Geronimo implementation of the JSR-299 Context and Dependency Injection for the Java EE Platform</description>
     <url>http://geronimo.apache.org/maven/${siteId}/${version}</url>
 
+    <distributionManagement>
+        <site>
+            <id>apache-website</id>
+            <url>${site.deploy.url}/maven/${siteId}/${version}</url>
+        </site>
+    </distributionManagement>
+
+    <properties>
+        <siteId>specs/${artifactId}</siteId>
+    </properties>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/geronimo/specs/trunk/geronimo-cdi_1.0_spec/</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/geronimo/specs/trunk/geronimo-cdi_1.0_spec/</developerConnection>
+        <url>http://svn.apache.org/viewcvs.cgi/geronimo/specs/trunk/geronimo-cdi_1.0_spec/</url>
+    </scm>
+
     <dependencies>
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
@@ -44,20 +61,34 @@
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
             <artifactId>geronimo-el_1.0_spec</artifactId>
+            <version>1.0.2-SNAPSHOT</version>
             <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>org.apache.geronimo.specs</groupId>
             <artifactId>geronimo-atinject_1.0_spec</artifactId>
+            <version>1.0-SNAPSHOT</version>
+            <scope>provided</scope>
         </dependency>
     </dependencies>
 
-
-    <distributionManagement>
-        <site>
-            <id>apache-website</id>
-            <url>${site.deploy.url}/maven/${siteId}/${version}</url>
-        </site>
-    </distributionManagement>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.felix</groupId>
+                <artifactId>maven-bundle-plugin</artifactId>
+                <configuration>
+                    <instructions>
+                        <Export-Package>javax.decorator*;version=1.0</Export-Package>
+                        <Export-Package>javax.enterprise.context*;version=1.0</Export-Package>
+                        <Export-Package>javax.enterprise.event*;version=1.0</Export-Package>
+                        <Export-Package>javax.enterprise.inject*;version=1.0</Export-Package>
+                        <Export-Package>javax.enterprise.util*;version=1.0</Export-Package>
+                        <Export-Package>javax.interceptor*;version=1.0</Export-Package>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 
 </project>