You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dw...@apache.org on 2010/02/05 22:45:52 UTC

svn commit: r907106 - /geronimo/plugins/openjpa2/branches/2.1/pom.xml

Author: dwoods
Date: Fri Feb  5 21:45:52 2010
New Revision: 907106

URL: http://svn.apache.org/viewvc?rev=907106&view=rev
Log:
add missing apache-relase profile, which isn't provided by Genesis 1.5 for 2.1.x server plugins...

Modified:
    geronimo/plugins/openjpa2/branches/2.1/pom.xml

Modified: geronimo/plugins/openjpa2/branches/2.1/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/plugins/openjpa2/branches/2.1/pom.xml?rev=907106&r1=907105&r2=907106&view=diff
==============================================================================
--- geronimo/plugins/openjpa2/branches/2.1/pom.xml (original)
+++ geronimo/plugins/openjpa2/branches/2.1/pom.xml Fri Feb  5 21:45:52 2010
@@ -253,32 +253,68 @@
 
     <profiles>
         <profile>
-            <id>default</id>
-            <activation>
-                <activeByDefault>true</activeByDefault>
-            </activation>
+            <id>it</id>
             <modules>
                 <module>geronimo-openjpa2</module>
                 <module>openjpa2</module>
                 <module>geronimo-persistence-jpa20</module>
                 <module>geronimo-persistence-jpa20-builder</module>
                 <module>persistence-jpa20-deployer</module>
+                <module>jpa-tests</module>
             </modules>
         </profile>
 
         <profile>
-            <id>it</id>
-            <modules>
-                <module>geronimo-openjpa2</module>
-                <module>openjpa2</module>
-                <module>geronimo-persistence-jpa20</module>
-                <module>geronimo-persistence-jpa20-builder</module>
-                <module>persistence-jpa20-deployer</module>
-                <module>jpa-tests</module>
-            </modules>
+            <id>apache-release</id>
+            <build>
+                <plugins>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-gpg-plugin</artifactId>
+                        <configuration>
+                            <passphrase>${gpg.passphrase}</passphrase>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <goals>
+                                    <goal>sign</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-deploy-plugin</artifactId>
+                        <inherited>true</inherited>
+                        <configuration>
+                            <updateReleaseInfo>true</updateReleaseInfo>
+                        </configuration>
+                    </plugin>
+                    <plugin>
+                        <groupId>org.apache.maven.plugins</groupId>
+                        <artifactId>maven-source-plugin</artifactId>
+                        <executions>
+                            <execution>
+                                <id>attach-sources</id>
+                                <goals>
+                                    <goal>jar</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
         </profile>
     </profiles>
 
+    <modules>
+        <module>geronimo-openjpa2</module>
+        <module>openjpa2</module>
+        <module>geronimo-persistence-jpa20</module>
+        <module>geronimo-persistence-jpa20-builder</module>
+        <module>persistence-jpa20-deployer</module>
+    </modules>
+
     <build>
         <defaultGoal>install</defaultGoal>