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 2008/05/27 19:05:19 UTC

svn commit: r660605 - in /geronimo/sandbox/concurrent/geronimo-concurrent_spec: LICENSE.TXT NOTICE.txt pom.xml

Author: gawor
Date: Tue May 27 10:05:16 2008
New Revision: 660605

URL: http://svn.apache.org/viewvc?rev=660605&view=rev
Log:
update the pom to match the pom of specs

Removed:
    geronimo/sandbox/concurrent/geronimo-concurrent_spec/LICENSE.TXT
    geronimo/sandbox/concurrent/geronimo-concurrent_spec/NOTICE.txt
Modified:
    geronimo/sandbox/concurrent/geronimo-concurrent_spec/pom.xml

Modified: geronimo/sandbox/concurrent/geronimo-concurrent_spec/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/concurrent/geronimo-concurrent_spec/pom.xml?rev=660605&r1=660604&r2=660605&view=diff
==============================================================================
--- geronimo/sandbox/concurrent/geronimo-concurrent_spec/pom.xml (original)
+++ geronimo/sandbox/concurrent/geronimo-concurrent_spec/pom.xml Tue May 27 10:05:16 2008
@@ -26,59 +26,33 @@
 
     <parent>
         <groupId>org.apache.geronimo.specs</groupId>
-        <artifactId>specs</artifactId>
-        <version>1.2</version>
-        <relativePath>../pom.xml</relativePath>
+        <artifactId>specs-parent</artifactId>
+        <version>1.5</version>
     </parent>
 
     <artifactId>geronimo-concurrent_spec</artifactId>
-    <name>Concurrency Utilities for Java EE: Specification API</name>
+    <name>Apache Geronimo Concurrency Utilities for Java EE API</name>
     <version>1.0-SNAPSHOT</version>
 
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <configuration>
-                    <source>1.5</source>
-                    <target>1.5</target>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.geronimo.genesis.plugins</groupId>
-                <artifactId>tools-maven-plugin</artifactId>
-
-                <!-- Tools includes custom packagings, install as extension to pick them up -->
-                <extensions>true</extensions>
-
-                <executions>
-                    <execution>
-                        <id>install-legal-files</id>
-                        <phase>generate-resources</phase>
-                        <goals>
-                            <goal>copy-legal-files</goal>
-                        </goals>
-                        <configuration>
-                            <!-- Fail the build if no legal files were copied -->
-                            <strict>true</strict>
-                        </configuration>
-                    </execution>
-
-                    <execution>
-                        <id>verify-legal-files</id>
-                        <phase>verify</phase>
-                        <goals>
-                            <goal>verify-legal-files</goal>
-                        </goals>
-                        <configuration>
-                            <!-- Fail the build if no legal files were found -->
-                            <strict>false</strict>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
+    <url>http://geronimo.apache.org/maven/${siteId}/${version}</url>
+    <distributionManagement>
+        <site>
+            <id>geronimo-website</id>
+            <url>${staging.siteURL}/${siteId}/${version}</url>
+        </site>
+    </distributionManagement>
+
+    <properties>
+        <siteId>specs/${artifactId}</siteId>
+
+        <geronimo.osgi.export.pkg>javax.util.concurrent*</geronimo.osgi.export.pkg>
+        <geronimo.osgi.export.version>1.0</geronimo.osgi.export.version>
+    </properties>
+
+    <scm>
+        <connection>scm:svn:http://svn.apache.org/repos/asf/geronimo/sandbox/concurrent/geronimo-concurrent_spec/</connection>
+        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/geronimo/sandbox/concurrent/geronimo-concurrent_spec/</developerConnection>
+        <url>http://svn.apache.org/repos/asf/geronimo/sandbox/concurrent/geronimo-concurrent_spec/</url>
+    </scm>
 
 </project>