You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by da...@apache.org on 2006/12/14 04:20:26 UTC

svn commit: r486949 - /geronimo/genesis/trunk/pom.xml

Author: dain
Date: Wed Dec 13 19:20:25 2006
New Revision: 486949

URL: http://svn.apache.org/viewvc?view=rev&rev=486949
Log:
Added Jason Van Zyl's magic stagging profile

Modified:
    geronimo/genesis/trunk/pom.xml

Modified: geronimo/genesis/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/genesis/trunk/pom.xml?view=diff&rev=486949&r1=486948&r2=486949
==============================================================================
--- geronimo/genesis/trunk/pom.xml (original)
+++ geronimo/genesis/trunk/pom.xml Wed Dec 13 19:20:25 2006
@@ -34,6 +34,7 @@
     <artifactId>genesis</artifactId>
     <name>Genesis</name>
     <packaging>pom</packaging>
+    <inceptionYear>2003</inceptionYear>
     
     <version>1.1-SNAPSHOT</version>
     
@@ -107,7 +108,7 @@
             <url>scp://people.apache.org/www/geronimo.apache.org/maven/genesis</url>
         </site>
     </distributionManagement>
-    
+
     <profiles>
         <profile>
             <id>default</id>
@@ -168,6 +169,117 @@
                     <url>file://${output.dir}/website</url>
                 </site>
             </distributionManagement>
+        </profile>
+        <profile>
+            <!-- Problems: it's not signing JavaDoc and Source JARs -->
+            <id>staging</id>
+    
+            <pluginRepositories>
+                <pluginRepository>
+                    <id>apache.org</id>
+                    <name>Maven Plugin Snapshots</name>
+                    <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+                    <releases>
+                        <enabled>false</enabled>
+                    </releases>
+                    <snapshots>
+                        <enabled>true</enabled>
+                    </snapshots>
+                </pluginRepository>
+            </pluginRepositories>
+
+            <build>
+                <plugins>
+                    <!-- We want the sources JAR published with the release -->
+                    <plugin>
+                        <inherited>true</inherited>
+                        <artifactId>maven-source-plugin</artifactId>
+                        <version>2.0.2</version>
+                        <executions>
+                            <execution>
+                                <id>attach-sources</id>
+                                <goals>
+                                    <goal>jar</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <!-- We want the JavaDoc JAR published with the release -->
+                    <plugin>
+                        <inherited>true</inherited>
+                        <artifactId>maven-javadoc-plugin</artifactId>
+                        <version>2.2</version>
+                        <configuration>
+                            <source>1.5</source>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <id>attach-javadocs</id>
+                                <goals>
+                                    <goal>jar</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <!-- We want to deploy the artifact to a staging location for perusal -->
+                    <plugin>
+                        <inherited>true</inherited>
+                        <artifactId>maven-deploy-plugin</artifactId>
+                        <version>2.3-SNAPSHOT</version>
+                        <configuration>
+                            <updateReleaseInfo>true</updateReleaseInfo>
+                            <altDeploymentRepository>${deploy.altRepository}</altDeploymentRepository>
+                        </configuration>
+                    </plugin>
+                    <!-- We want to deploy the site to a staging location for perusal -->
+                    <plugin>
+                        <artifactId>maven-site-plugin</artifactId>
+                        <version>2.0-beta-5</version>
+                        <executions>
+                            <execution>
+                                <goals>
+                                    <goal>stage-deploy</goal>
+                                </goals>
+                                <configuration>
+                                    <stagingSiteURL>${staging.siteURL}</stagingSiteURL>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <!-- We want to sign the artifact, the POM, and all attached artifacts -->
+                    <plugin>
+                        <artifactId>maven-gpg-plugin</artifactId>
+                        <version>1.0-alpha-1</version>
+                        <configuration>
+                            <passphrase>${gpg.passphrase}</passphrase>
+                        </configuration>
+                        <executions>
+                            <execution>
+                                <goals>
+                                    <goal>sign</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                    </plugin>
+                    <!-- We want to package up license resources in the JARs produced -->
+                    <plugin>
+                        <artifactId>maven-remote-resources-plugin</artifactId>
+                        <version>1.0-alpha-1</version>
+                        <executions>
+                            <execution>
+                                <goals>
+                                    <goal>process</goal>
+                                </goals>
+                                <configuration>
+                                    <resourceBundles>
+                                        <resourceBundle>org.apache:apache-jar-resource-bundle:1.0</resourceBundle>
+                                    </resourceBundles>
+                                </configuration>
+                            </execution>
+                        </executions>
+                    </plugin>
+                </plugins>
+            </build>
         </profile>
     </profiles>
 </project>



Re: svn commit: r486949 - /geronimo/genesis/trunk/pom.xml

Posted by ja...@gmail.com.
Set config/project-config/pom.xml for the bits that other projects pick up as defaults. 

--jason


  

-----Original Message-----
From: Matt Hogstrom <ma...@hogstrom.org>
Date: Thu, 14 Dec 2006 20:51:07 
To:dev@geronimo.apache.org
Subject: Re: svn commit: r486949 - /geronimo/genesis/trunk/pom.xml

I think copyrights apply to the individual works and not the project  
itself.  Sounds like you were addressing the project copyright year  
and sounds right.  I was thinking of things like new java programs,  
etc.  Thanks for the reminder.

On Dec 14, 2006, at 5:23 PM, Dain Sundstrom wrote:

> InceptionYear is now a required field and the Geronimo was created  
> in 2003.  If you want to change genesis to 2006, then make sure to  
> switch the projects dependent on that pom to the correct inception  
> year.
>
> -dain
>
> On Dec 13, 2006, at 9:52 PM, Jason Dillon wrote:
>
>> Er... inceptionYear for this is actually 2006... any specific  
>> reason why you added this?
>>
>> --jason
>>
>>
>> On Dec 13, 2006, at 7:20 PM, dain@apache.org wrote:
>>
>>> Author: dain
>>> Date: Wed Dec 13 19:20:25 2006
>>> New Revision: 486949
>>>
>>> URL: http://svn.apache.org/viewvc?view=rev&rev=486949
>>> Log:
>>> Added Jason Van Zyl's magic stagging profile
>>>
>>> Modified:
>>>     geronimo/genesis/trunk/pom.xml
>>>
>>> Modified: geronimo/genesis/trunk/pom.xml
>>> URL: http://svn.apache.org/viewvc/geronimo/genesis/trunk/pom.xml? 
>>> view=diff&rev=486949&r1=486948&r2=486949
>>> ==================================================================== 
>>> ==========
>>> --- geronimo/genesis/trunk/pom.xml (original)
>>> +++ geronimo/genesis/trunk/pom.xml Wed Dec 13 19:20:25 2006
>>> @@ -34,6 +34,7 @@
>>>      <artifactId>genesis</artifactId>
>>>      <name>Genesis</name>
>>>      <packaging>pom</packaging>
>>> +    <inceptionYear>2003</inceptionYear>
>>>
>>>      <version>1.1-SNAPSHOT</version>
>>>
>>> @@ -107,7 +108,7 @@
>>>              <url>scp://people.apache.org/www/geronimo.apache.org/ 
>>> maven/genesis</url>
>>>          </site>
>>>      </distributionManagement>
>>> -
>>> +
>>>      <profiles>
>>>          <profile>
>>>              <id>default</id>
>>> @@ -168,6 +169,117 @@
>>>                      <url>file://${output.dir}/website</url>
>>>                  </site>
>>>              </distributionManagement>
>>> +        </profile>
>>> +        <profile>
>>> +            <!-- Problems: it's not signing JavaDoc and Source  
>>> JARs -->
>>> +            <id>staging</id>
>>> +
>>> +            <pluginRepositories>
>>> +                <pluginRepository>
>>> +                    <id>apache.org</id>
>>> +                    <name>Maven Plugin Snapshots</name>
>>> +                    <url>http://people.apache.org/repo/m2- 
>>> snapshot-repository</url>
>>> +                    <releases>
>>> +                        <enabled>false</enabled>
>>> +                    </releases>
>>> +                    <snapshots>
>>> +                        <enabled>true</enabled>
>>> +                    </snapshots>
>>> +                </pluginRepository>
>>> +            </pluginRepositories>
>>> +
>>> +            <build>
>>> +                <plugins>
>>> +                    <!-- We want the sources JAR published with  
>>> the release -->
>>> +                    <plugin>
>>> +                        <inherited>true</inherited>
>>> +                        <artifactId>maven-source-plugin</ 
>>> artifactId>
>>> +                        <version>2.0.2</version>
>>> +                        <executions>
>>> +                            <execution>
>>> +                                <id>attach-sources</id>
>>> +                                <goals>
>>> +                                    <goal>jar</goal>
>>> +                                </goals>
>>> +                            </execution>
>>> +                        </executions>
>>> +                    </plugin>
>>> +                    <!-- We want the JavaDoc JAR published with  
>>> the release -->
>>> +                    <plugin>
>>> +                        <inherited>true</inherited>
>>> +                        <artifactId>maven-javadoc-plugin</ 
>>> artifactId>
>>> +                        <version>2.2</version>
>>> +                        <configuration>
>>> +                            <source>1.5</source>
>>> +                        </configuration>
>>> +                        <executions>
>>> +                            <execution>
>>> +                                <id>attach-javadocs</id>
>>> +                                <goals>
>>> +                                    <goal>jar</goal>
>>> +                                </goals>
>>> +                            </execution>
>>> +                        </executions>
>>> +                    </plugin>
>>> +                    <!-- We want to deploy the artifact to a  
>>> staging location for perusal -->
>>> +                    <plugin>
>>> +                        <inherited>true</inherited>
>>> +                        <artifactId>maven-deploy-plugin</ 
>>> artifactId>
>>> +                        <version>2.3-SNAPSHOT</version>
>>> +                        <configuration>
>>> +                            <updateReleaseInfo>true</ 
>>> updateReleaseInfo>
>>> +                            <altDeploymentRepository>$ 
>>> {deploy.altRepository}</altDeploymentRepository>
>>> +                        </configuration>
>>> +                    </plugin>
>>> +                    <!-- We want to deploy the site to a staging  
>>> location for perusal -->
>>> +                    <plugin>
>>> +                        <artifactId>maven-site-plugin</artifactId>
>>> +                        <version>2.0-beta-5</version>
>>> +                        <executions>
>>> +                            <execution>
>>> +                                <goals>
>>> +                                    <goal>stage-deploy</goal>
>>> +                                </goals>
>>> +                                <configuration>
>>> +                                    <stagingSiteURL>$ 
>>> {staging.siteURL}</stagingSiteURL>
>>> +                                </configuration>
>>> +                            </execution>
>>> +                        </executions>
>>> +                    </plugin>
>>> +                    <!-- We want to sign the artifact, the POM,  
>>> and all attached artifacts -->
>>> +                    <plugin>
>>> +                        <artifactId>maven-gpg-plugin</artifactId>
>>> +                        <version>1.0-alpha-1</version>
>>> +                        <configuration>
>>> +                            <passphrase>${gpg.passphrase}</ 
>>> passphrase>
>>> +                        </configuration>
>>> +                        <executions>
>>> +                            <execution>
>>> +                                <goals>
>>> +                                    <goal>sign</goal>
>>> +                                </goals>
>>> +                            </execution>
>>> +                        </executions>
>>> +                    </plugin>
>>> +                    <!-- We want to package up license resources  
>>> in the JARs produced -->
>>> +                    <plugin>
>>> +                        <artifactId>maven-remote-resources- 
>>> plugin</artifactId>
>>> +                        <version>1.0-alpha-1</version>
>>> +                        <executions>
>>> +                            <execution>
>>> +                                <goals>
>>> +                                    <goal>process</goal>
>>> +                                </goals>
>>> +                                <configuration>
>>> +                                    <resourceBundles>
>>> +                                         
>>> <resourceBundle>org.apache:apache-jar-resource-bundle:1.0</ 
>>> resourceBundle>
>>> +                                    </resourceBundles>
>>> +                                </configuration>
>>> +                            </execution>
>>> +                        </executions>
>>> +                    </plugin>
>>> +                </plugins>
>>> +            </build>
>>>          </profile>
>>>      </profiles>
>>>  </project>
>>>
>>>
>
>

Matt Hogstrom
matt@hogstrom.org



Re: svn commit: r486949 - /geronimo/genesis/trunk/pom.xml

Posted by Matt Hogstrom <ma...@hogstrom.org>.
I think copyrights apply to the individual works and not the project  
itself.  Sounds like you were addressing the project copyright year  
and sounds right.  I was thinking of things like new java programs,  
etc.  Thanks for the reminder.

On Dec 14, 2006, at 5:23 PM, Dain Sundstrom wrote:

> InceptionYear is now a required field and the Geronimo was created  
> in 2003.  If you want to change genesis to 2006, then make sure to  
> switch the projects dependent on that pom to the correct inception  
> year.
>
> -dain
>
> On Dec 13, 2006, at 9:52 PM, Jason Dillon wrote:
>
>> Er... inceptionYear for this is actually 2006... any specific  
>> reason why you added this?
>>
>> --jason
>>
>>
>> On Dec 13, 2006, at 7:20 PM, dain@apache.org wrote:
>>
>>> Author: dain
>>> Date: Wed Dec 13 19:20:25 2006
>>> New Revision: 486949
>>>
>>> URL: http://svn.apache.org/viewvc?view=rev&rev=486949
>>> Log:
>>> Added Jason Van Zyl's magic stagging profile
>>>
>>> Modified:
>>>     geronimo/genesis/trunk/pom.xml
>>>
>>> Modified: geronimo/genesis/trunk/pom.xml
>>> URL: http://svn.apache.org/viewvc/geronimo/genesis/trunk/pom.xml? 
>>> view=diff&rev=486949&r1=486948&r2=486949
>>> ==================================================================== 
>>> ==========
>>> --- geronimo/genesis/trunk/pom.xml (original)
>>> +++ geronimo/genesis/trunk/pom.xml Wed Dec 13 19:20:25 2006
>>> @@ -34,6 +34,7 @@
>>>      <artifactId>genesis</artifactId>
>>>      <name>Genesis</name>
>>>      <packaging>pom</packaging>
>>> +    <inceptionYear>2003</inceptionYear>
>>>
>>>      <version>1.1-SNAPSHOT</version>
>>>
>>> @@ -107,7 +108,7 @@
>>>              <url>scp://people.apache.org/www/geronimo.apache.org/ 
>>> maven/genesis</url>
>>>          </site>
>>>      </distributionManagement>
>>> -
>>> +
>>>      <profiles>
>>>          <profile>
>>>              <id>default</id>
>>> @@ -168,6 +169,117 @@
>>>                      <url>file://${output.dir}/website</url>
>>>                  </site>
>>>              </distributionManagement>
>>> +        </profile>
>>> +        <profile>
>>> +            <!-- Problems: it's not signing JavaDoc and Source  
>>> JARs -->
>>> +            <id>staging</id>
>>> +
>>> +            <pluginRepositories>
>>> +                <pluginRepository>
>>> +                    <id>apache.org</id>
>>> +                    <name>Maven Plugin Snapshots</name>
>>> +                    <url>http://people.apache.org/repo/m2- 
>>> snapshot-repository</url>
>>> +                    <releases>
>>> +                        <enabled>false</enabled>
>>> +                    </releases>
>>> +                    <snapshots>
>>> +                        <enabled>true</enabled>
>>> +                    </snapshots>
>>> +                </pluginRepository>
>>> +            </pluginRepositories>
>>> +
>>> +            <build>
>>> +                <plugins>
>>> +                    <!-- We want the sources JAR published with  
>>> the release -->
>>> +                    <plugin>
>>> +                        <inherited>true</inherited>
>>> +                        <artifactId>maven-source-plugin</ 
>>> artifactId>
>>> +                        <version>2.0.2</version>
>>> +                        <executions>
>>> +                            <execution>
>>> +                                <id>attach-sources</id>
>>> +                                <goals>
>>> +                                    <goal>jar</goal>
>>> +                                </goals>
>>> +                            </execution>
>>> +                        </executions>
>>> +                    </plugin>
>>> +                    <!-- We want the JavaDoc JAR published with  
>>> the release -->
>>> +                    <plugin>
>>> +                        <inherited>true</inherited>
>>> +                        <artifactId>maven-javadoc-plugin</ 
>>> artifactId>
>>> +                        <version>2.2</version>
>>> +                        <configuration>
>>> +                            <source>1.5</source>
>>> +                        </configuration>
>>> +                        <executions>
>>> +                            <execution>
>>> +                                <id>attach-javadocs</id>
>>> +                                <goals>
>>> +                                    <goal>jar</goal>
>>> +                                </goals>
>>> +                            </execution>
>>> +                        </executions>
>>> +                    </plugin>
>>> +                    <!-- We want to deploy the artifact to a  
>>> staging location for perusal -->
>>> +                    <plugin>
>>> +                        <inherited>true</inherited>
>>> +                        <artifactId>maven-deploy-plugin</ 
>>> artifactId>
>>> +                        <version>2.3-SNAPSHOT</version>
>>> +                        <configuration>
>>> +                            <updateReleaseInfo>true</ 
>>> updateReleaseInfo>
>>> +                            <altDeploymentRepository>$ 
>>> {deploy.altRepository}</altDeploymentRepository>
>>> +                        </configuration>
>>> +                    </plugin>
>>> +                    <!-- We want to deploy the site to a staging  
>>> location for perusal -->
>>> +                    <plugin>
>>> +                        <artifactId>maven-site-plugin</artifactId>
>>> +                        <version>2.0-beta-5</version>
>>> +                        <executions>
>>> +                            <execution>
>>> +                                <goals>
>>> +                                    <goal>stage-deploy</goal>
>>> +                                </goals>
>>> +                                <configuration>
>>> +                                    <stagingSiteURL>$ 
>>> {staging.siteURL}</stagingSiteURL>
>>> +                                </configuration>
>>> +                            </execution>
>>> +                        </executions>
>>> +                    </plugin>
>>> +                    <!-- We want to sign the artifact, the POM,  
>>> and all attached artifacts -->
>>> +                    <plugin>
>>> +                        <artifactId>maven-gpg-plugin</artifactId>
>>> +                        <version>1.0-alpha-1</version>
>>> +                        <configuration>
>>> +                            <passphrase>${gpg.passphrase}</ 
>>> passphrase>
>>> +                        </configuration>
>>> +                        <executions>
>>> +                            <execution>
>>> +                                <goals>
>>> +                                    <goal>sign</goal>
>>> +                                </goals>
>>> +                            </execution>
>>> +                        </executions>
>>> +                    </plugin>
>>> +                    <!-- We want to package up license resources  
>>> in the JARs produced -->
>>> +                    <plugin>
>>> +                        <artifactId>maven-remote-resources- 
>>> plugin</artifactId>
>>> +                        <version>1.0-alpha-1</version>
>>> +                        <executions>
>>> +                            <execution>
>>> +                                <goals>
>>> +                                    <goal>process</goal>
>>> +                                </goals>
>>> +                                <configuration>
>>> +                                    <resourceBundles>
>>> +                                         
>>> <resourceBundle>org.apache:apache-jar-resource-bundle:1.0</ 
>>> resourceBundle>
>>> +                                    </resourceBundles>
>>> +                                </configuration>
>>> +                            </execution>
>>> +                        </executions>
>>> +                    </plugin>
>>> +                </plugins>
>>> +            </build>
>>>          </profile>
>>>      </profiles>
>>>  </project>
>>>
>>>
>
>

Matt Hogstrom
matt@hogstrom.org



Re: svn commit: r486949 - /geronimo/genesis/trunk/pom.xml

Posted by Dain Sundstrom <da...@iq80.com>.
InceptionYear is now a required field and the Geronimo was created in  
2003.  If you want to change genesis to 2006, then make sure to  
switch the projects dependent on that pom to the correct inception year.

-dain

On Dec 13, 2006, at 9:52 PM, Jason Dillon wrote:

> Er... inceptionYear for this is actually 2006... any specific  
> reason why you added this?
>
> --jason
>
>
> On Dec 13, 2006, at 7:20 PM, dain@apache.org wrote:
>
>> Author: dain
>> Date: Wed Dec 13 19:20:25 2006
>> New Revision: 486949
>>
>> URL: http://svn.apache.org/viewvc?view=rev&rev=486949
>> Log:
>> Added Jason Van Zyl's magic stagging profile
>>
>> Modified:
>>     geronimo/genesis/trunk/pom.xml
>>
>> Modified: geronimo/genesis/trunk/pom.xml
>> URL: http://svn.apache.org/viewvc/geronimo/genesis/trunk/pom.xml? 
>> view=diff&rev=486949&r1=486948&r2=486949
>> ===================================================================== 
>> =========
>> --- geronimo/genesis/trunk/pom.xml (original)
>> +++ geronimo/genesis/trunk/pom.xml Wed Dec 13 19:20:25 2006
>> @@ -34,6 +34,7 @@
>>      <artifactId>genesis</artifactId>
>>      <name>Genesis</name>
>>      <packaging>pom</packaging>
>> +    <inceptionYear>2003</inceptionYear>
>>
>>      <version>1.1-SNAPSHOT</version>
>>
>> @@ -107,7 +108,7 @@
>>              <url>scp://people.apache.org/www/geronimo.apache.org/ 
>> maven/genesis</url>
>>          </site>
>>      </distributionManagement>
>> -
>> +
>>      <profiles>
>>          <profile>
>>              <id>default</id>
>> @@ -168,6 +169,117 @@
>>                      <url>file://${output.dir}/website</url>
>>                  </site>
>>              </distributionManagement>
>> +        </profile>
>> +        <profile>
>> +            <!-- Problems: it's not signing JavaDoc and Source  
>> JARs -->
>> +            <id>staging</id>
>> +
>> +            <pluginRepositories>
>> +                <pluginRepository>
>> +                    <id>apache.org</id>
>> +                    <name>Maven Plugin Snapshots</name>
>> +                    <url>http://people.apache.org/repo/m2- 
>> snapshot-repository</url>
>> +                    <releases>
>> +                        <enabled>false</enabled>
>> +                    </releases>
>> +                    <snapshots>
>> +                        <enabled>true</enabled>
>> +                    </snapshots>
>> +                </pluginRepository>
>> +            </pluginRepositories>
>> +
>> +            <build>
>> +                <plugins>
>> +                    <!-- We want the sources JAR published with  
>> the release -->
>> +                    <plugin>
>> +                        <inherited>true</inherited>
>> +                        <artifactId>maven-source-plugin</artifactId>
>> +                        <version>2.0.2</version>
>> +                        <executions>
>> +                            <execution>
>> +                                <id>attach-sources</id>
>> +                                <goals>
>> +                                    <goal>jar</goal>
>> +                                </goals>
>> +                            </execution>
>> +                        </executions>
>> +                    </plugin>
>> +                    <!-- We want the JavaDoc JAR published with  
>> the release -->
>> +                    <plugin>
>> +                        <inherited>true</inherited>
>> +                        <artifactId>maven-javadoc-plugin</ 
>> artifactId>
>> +                        <version>2.2</version>
>> +                        <configuration>
>> +                            <source>1.5</source>
>> +                        </configuration>
>> +                        <executions>
>> +                            <execution>
>> +                                <id>attach-javadocs</id>
>> +                                <goals>
>> +                                    <goal>jar</goal>
>> +                                </goals>
>> +                            </execution>
>> +                        </executions>
>> +                    </plugin>
>> +                    <!-- We want to deploy the artifact to a  
>> staging location for perusal -->
>> +                    <plugin>
>> +                        <inherited>true</inherited>
>> +                        <artifactId>maven-deploy-plugin</artifactId>
>> +                        <version>2.3-SNAPSHOT</version>
>> +                        <configuration>
>> +                            <updateReleaseInfo>true</ 
>> updateReleaseInfo>
>> +                            <altDeploymentRepository>$ 
>> {deploy.altRepository}</altDeploymentRepository>
>> +                        </configuration>
>> +                    </plugin>
>> +                    <!-- We want to deploy the site to a staging  
>> location for perusal -->
>> +                    <plugin>
>> +                        <artifactId>maven-site-plugin</artifactId>
>> +                        <version>2.0-beta-5</version>
>> +                        <executions>
>> +                            <execution>
>> +                                <goals>
>> +                                    <goal>stage-deploy</goal>
>> +                                </goals>
>> +                                <configuration>
>> +                                    <stagingSiteURL>$ 
>> {staging.siteURL}</stagingSiteURL>
>> +                                </configuration>
>> +                            </execution>
>> +                        </executions>
>> +                    </plugin>
>> +                    <!-- We want to sign the artifact, the POM,  
>> and all attached artifacts -->
>> +                    <plugin>
>> +                        <artifactId>maven-gpg-plugin</artifactId>
>> +                        <version>1.0-alpha-1</version>
>> +                        <configuration>
>> +                            <passphrase>${gpg.passphrase}</ 
>> passphrase>
>> +                        </configuration>
>> +                        <executions>
>> +                            <execution>
>> +                                <goals>
>> +                                    <goal>sign</goal>
>> +                                </goals>
>> +                            </execution>
>> +                        </executions>
>> +                    </plugin>
>> +                    <!-- We want to package up license resources  
>> in the JARs produced -->
>> +                    <plugin>
>> +                        <artifactId>maven-remote-resources- 
>> plugin</artifactId>
>> +                        <version>1.0-alpha-1</version>
>> +                        <executions>
>> +                            <execution>
>> +                                <goals>
>> +                                    <goal>process</goal>
>> +                                </goals>
>> +                                <configuration>
>> +                                    <resourceBundles>
>> +                                         
>> <resourceBundle>org.apache:apache-jar-resource-bundle:1.0</ 
>> resourceBundle>
>> +                                    </resourceBundles>
>> +                                </configuration>
>> +                            </execution>
>> +                        </executions>
>> +                    </plugin>
>> +                </plugins>
>> +            </build>
>>          </profile>
>>      </profiles>
>>  </project>
>>
>>


Re: svn commit: r486949 - /geronimo/genesis/trunk/pom.xml

Posted by Matt Hogstrom <ma...@hogstrom.org>.
This should be weaked I think...copyright dates mean something but I  
have no idea what.

On Dec 14, 2006, at 12:52 AM, Jason Dillon wrote:

> Er... inceptionYear for this is actually 2006... any specific  
> reason why you added this?
>
> --jason
>
>
> On Dec 13, 2006, at 7:20 PM, dain@apache.org wrote:
>
>> Author: dain
>> Date: Wed Dec 13 19:20:25 2006
>> New Revision: 486949
>>
>> URL: http://svn.apache.org/viewvc?view=rev&rev=486949
>> Log:
>> Added Jason Van Zyl's magic stagging profile
>>
>> Modified:
>>     geronimo/genesis/trunk/pom.xml
>>
>> Modified: geronimo/genesis/trunk/pom.xml
>> URL: http://svn.apache.org/viewvc/geronimo/genesis/trunk/pom.xml? 
>> view=diff&rev=486949&r1=486948&r2=486949
>> ===================================================================== 
>> =========
>> --- geronimo/genesis/trunk/pom.xml (original)
>> +++ geronimo/genesis/trunk/pom.xml Wed Dec 13 19:20:25 2006
>> @@ -34,6 +34,7 @@
>>      <artifactId>genesis</artifactId>
>>      <name>Genesis</name>
>>      <packaging>pom</packaging>
>> +    <inceptionYear>2003</inceptionYear>
>>
>>      <version>1.1-SNAPSHOT</version>
>>
>> @@ -107,7 +108,7 @@
>>              <url>scp://people.apache.org/www/geronimo.apache.org/ 
>> maven/genesis</url>
>>          </site>
>>      </distributionManagement>
>> -
>> +
>>      <profiles>
>>          <profile>
>>              <id>default</id>
>> @@ -168,6 +169,117 @@
>>                      <url>file://${output.dir}/website</url>
>>                  </site>
>>              </distributionManagement>
>> +        </profile>
>> +        <profile>
>> +            <!-- Problems: it's not signing JavaDoc and Source  
>> JARs -->
>> +            <id>staging</id>
>> +
>> +            <pluginRepositories>
>> +                <pluginRepository>
>> +                    <id>apache.org</id>
>> +                    <name>Maven Plugin Snapshots</name>
>> +                    <url>http://people.apache.org/repo/m2- 
>> snapshot-repository</url>
>> +                    <releases>
>> +                        <enabled>false</enabled>
>> +                    </releases>
>> +                    <snapshots>
>> +                        <enabled>true</enabled>
>> +                    </snapshots>
>> +                </pluginRepository>
>> +            </pluginRepositories>
>> +
>> +            <build>
>> +                <plugins>
>> +                    <!-- We want the sources JAR published with  
>> the release -->
>> +                    <plugin>
>> +                        <inherited>true</inherited>
>> +                        <artifactId>maven-source-plugin</artifactId>
>> +                        <version>2.0.2</version>
>> +                        <executions>
>> +                            <execution>
>> +                                <id>attach-sources</id>
>> +                                <goals>
>> +                                    <goal>jar</goal>
>> +                                </goals>
>> +                            </execution>
>> +                        </executions>
>> +                    </plugin>
>> +                    <!-- We want the JavaDoc JAR published with  
>> the release -->
>> +                    <plugin>
>> +                        <inherited>true</inherited>
>> +                        <artifactId>maven-javadoc-plugin</ 
>> artifactId>
>> +                        <version>2.2</version>
>> +                        <configuration>
>> +                            <source>1.5</source>
>> +                        </configuration>
>> +                        <executions>
>> +                            <execution>
>> +                                <id>attach-javadocs</id>
>> +                                <goals>
>> +                                    <goal>jar</goal>
>> +                                </goals>
>> +                            </execution>
>> +                        </executions>
>> +                    </plugin>
>> +                    <!-- We want to deploy the artifact to a  
>> staging location for perusal -->
>> +                    <plugin>
>> +                        <inherited>true</inherited>
>> +                        <artifactId>maven-deploy-plugin</artifactId>
>> +                        <version>2.3-SNAPSHOT</version>
>> +                        <configuration>
>> +                            <updateReleaseInfo>true</ 
>> updateReleaseInfo>
>> +                            <altDeploymentRepository>$ 
>> {deploy.altRepository}</altDeploymentRepository>
>> +                        </configuration>
>> +                    </plugin>
>> +                    <!-- We want to deploy the site to a staging  
>> location for perusal -->
>> +                    <plugin>
>> +                        <artifactId>maven-site-plugin</artifactId>
>> +                        <version>2.0-beta-5</version>
>> +                        <executions>
>> +                            <execution>
>> +                                <goals>
>> +                                    <goal>stage-deploy</goal>
>> +                                </goals>
>> +                                <configuration>
>> +                                    <stagingSiteURL>$ 
>> {staging.siteURL}</stagingSiteURL>
>> +                                </configuration>
>> +                            </execution>
>> +                        </executions>
>> +                    </plugin>
>> +                    <!-- We want to sign the artifact, the POM,  
>> and all attached artifacts -->
>> +                    <plugin>
>> +                        <artifactId>maven-gpg-plugin</artifactId>
>> +                        <version>1.0-alpha-1</version>
>> +                        <configuration>
>> +                            <passphrase>${gpg.passphrase}</ 
>> passphrase>
>> +                        </configuration>
>> +                        <executions>
>> +                            <execution>
>> +                                <goals>
>> +                                    <goal>sign</goal>
>> +                                </goals>
>> +                            </execution>
>> +                        </executions>
>> +                    </plugin>
>> +                    <!-- We want to package up license resources  
>> in the JARs produced -->
>> +                    <plugin>
>> +                        <artifactId>maven-remote-resources- 
>> plugin</artifactId>
>> +                        <version>1.0-alpha-1</version>
>> +                        <executions>
>> +                            <execution>
>> +                                <goals>
>> +                                    <goal>process</goal>
>> +                                </goals>
>> +                                <configuration>
>> +                                    <resourceBundles>
>> +                                         
>> <resourceBundle>org.apache:apache-jar-resource-bundle:1.0</ 
>> resourceBundle>
>> +                                    </resourceBundles>
>> +                                </configuration>
>> +                            </execution>
>> +                        </executions>
>> +                    </plugin>
>> +                </plugins>
>> +            </build>
>>          </profile>
>>      </profiles>
>>  </project>
>>
>>
>
>

Matt Hogstrom
matt@hogstrom.org



Re: svn commit: r486949 - /geronimo/genesis/trunk/pom.xml

Posted by Matt Hogstrom <ma...@hogstrom.org>.
This should be weaked I think...copyright dates mean something but I  
have no idea what.

On Dec 14, 2006, at 12:52 AM, Jason Dillon wrote:

> Er... inceptionYear for this is actually 2006... any specific  
> reason why you added this?
>
> --jason
>
>
> On Dec 13, 2006, at 7:20 PM, dain@apache.org wrote:
>
>> Author: dain
>> Date: Wed Dec 13 19:20:25 2006
>> New Revision: 486949
>>
>> URL: http://svn.apache.org/viewvc?view=rev&rev=486949
>> Log:
>> Added Jason Van Zyl's magic stagging profile
>>
>> Modified:
>>     geronimo/genesis/trunk/pom.xml
>>
>> Modified: geronimo/genesis/trunk/pom.xml
>> URL: http://svn.apache.org/viewvc/geronimo/genesis/trunk/pom.xml? 
>> view=diff&rev=486949&r1=486948&r2=486949
>> ===================================================================== 
>> =========
>> --- geronimo/genesis/trunk/pom.xml (original)
>> +++ geronimo/genesis/trunk/pom.xml Wed Dec 13 19:20:25 2006
>> @@ -34,6 +34,7 @@
>>      <artifactId>genesis</artifactId>
>>      <name>Genesis</name>
>>      <packaging>pom</packaging>
>> +    <inceptionYear>2003</inceptionYear>
>>
>>      <version>1.1-SNAPSHOT</version>
>>
>> @@ -107,7 +108,7 @@
>>              <url>scp://people.apache.org/www/geronimo.apache.org/ 
>> maven/genesis</url>
>>          </site>
>>      </distributionManagement>
>> -
>> +
>>      <profiles>
>>          <profile>
>>              <id>default</id>
>> @@ -168,6 +169,117 @@
>>                      <url>file://${output.dir}/website</url>
>>                  </site>
>>              </distributionManagement>
>> +        </profile>
>> +        <profile>
>> +            <!-- Problems: it's not signing JavaDoc and Source  
>> JARs -->
>> +            <id>staging</id>
>> +
>> +            <pluginRepositories>
>> +                <pluginRepository>
>> +                    <id>apache.org</id>
>> +                    <name>Maven Plugin Snapshots</name>
>> +                    <url>http://people.apache.org/repo/m2- 
>> snapshot-repository</url>
>> +                    <releases>
>> +                        <enabled>false</enabled>
>> +                    </releases>
>> +                    <snapshots>
>> +                        <enabled>true</enabled>
>> +                    </snapshots>
>> +                </pluginRepository>
>> +            </pluginRepositories>
>> +
>> +            <build>
>> +                <plugins>
>> +                    <!-- We want the sources JAR published with  
>> the release -->
>> +                    <plugin>
>> +                        <inherited>true</inherited>
>> +                        <artifactId>maven-source-plugin</artifactId>
>> +                        <version>2.0.2</version>
>> +                        <executions>
>> +                            <execution>
>> +                                <id>attach-sources</id>
>> +                                <goals>
>> +                                    <goal>jar</goal>
>> +                                </goals>
>> +                            </execution>
>> +                        </executions>
>> +                    </plugin>
>> +                    <!-- We want the JavaDoc JAR published with  
>> the release -->
>> +                    <plugin>
>> +                        <inherited>true</inherited>
>> +                        <artifactId>maven-javadoc-plugin</ 
>> artifactId>
>> +                        <version>2.2</version>
>> +                        <configuration>
>> +                            <source>1.5</source>
>> +                        </configuration>
>> +                        <executions>
>> +                            <execution>
>> +                                <id>attach-javadocs</id>
>> +                                <goals>
>> +                                    <goal>jar</goal>
>> +                                </goals>
>> +                            </execution>
>> +                        </executions>
>> +                    </plugin>
>> +                    <!-- We want to deploy the artifact to a  
>> staging location for perusal -->
>> +                    <plugin>
>> +                        <inherited>true</inherited>
>> +                        <artifactId>maven-deploy-plugin</artifactId>
>> +                        <version>2.3-SNAPSHOT</version>
>> +                        <configuration>
>> +                            <updateReleaseInfo>true</ 
>> updateReleaseInfo>
>> +                            <altDeploymentRepository>$ 
>> {deploy.altRepository}</altDeploymentRepository>
>> +                        </configuration>
>> +                    </plugin>
>> +                    <!-- We want to deploy the site to a staging  
>> location for perusal -->
>> +                    <plugin>
>> +                        <artifactId>maven-site-plugin</artifactId>
>> +                        <version>2.0-beta-5</version>
>> +                        <executions>
>> +                            <execution>
>> +                                <goals>
>> +                                    <goal>stage-deploy</goal>
>> +                                </goals>
>> +                                <configuration>
>> +                                    <stagingSiteURL>$ 
>> {staging.siteURL}</stagingSiteURL>
>> +                                </configuration>
>> +                            </execution>
>> +                        </executions>
>> +                    </plugin>
>> +                    <!-- We want to sign the artifact, the POM,  
>> and all attached artifacts -->
>> +                    <plugin>
>> +                        <artifactId>maven-gpg-plugin</artifactId>
>> +                        <version>1.0-alpha-1</version>
>> +                        <configuration>
>> +                            <passphrase>${gpg.passphrase}</ 
>> passphrase>
>> +                        </configuration>
>> +                        <executions>
>> +                            <execution>
>> +                                <goals>
>> +                                    <goal>sign</goal>
>> +                                </goals>
>> +                            </execution>
>> +                        </executions>
>> +                    </plugin>
>> +                    <!-- We want to package up license resources  
>> in the JARs produced -->
>> +                    <plugin>
>> +                        <artifactId>maven-remote-resources- 
>> plugin</artifactId>
>> +                        <version>1.0-alpha-1</version>
>> +                        <executions>
>> +                            <execution>
>> +                                <goals>
>> +                                    <goal>process</goal>
>> +                                </goals>
>> +                                <configuration>
>> +                                    <resourceBundles>
>> +                                         
>> <resourceBundle>org.apache:apache-jar-resource-bundle:1.0</ 
>> resourceBundle>
>> +                                    </resourceBundles>
>> +                                </configuration>
>> +                            </execution>
>> +                        </executions>
>> +                    </plugin>
>> +                </plugins>
>> +            </build>
>>          </profile>
>>      </profiles>
>>  </project>
>>
>>
>
>

Matt Hogstrom
matt@hogstrom.org



Re: svn commit: r486949 - /geronimo/genesis/trunk/pom.xml

Posted by Jason Dillon <ja...@planet57.com>.
Er... inceptionYear for this is actually 2006... any specific reason  
why you added this?

--jason


On Dec 13, 2006, at 7:20 PM, dain@apache.org wrote:

> Author: dain
> Date: Wed Dec 13 19:20:25 2006
> New Revision: 486949
>
> URL: http://svn.apache.org/viewvc?view=rev&rev=486949
> Log:
> Added Jason Van Zyl's magic stagging profile
>
> Modified:
>     geronimo/genesis/trunk/pom.xml
>
> Modified: geronimo/genesis/trunk/pom.xml
> URL: http://svn.apache.org/viewvc/geronimo/genesis/trunk/pom.xml? 
> view=diff&rev=486949&r1=486948&r2=486949
> ====================================================================== 
> ========
> --- geronimo/genesis/trunk/pom.xml (original)
> +++ geronimo/genesis/trunk/pom.xml Wed Dec 13 19:20:25 2006
> @@ -34,6 +34,7 @@
>      <artifactId>genesis</artifactId>
>      <name>Genesis</name>
>      <packaging>pom</packaging>
> +    <inceptionYear>2003</inceptionYear>
>
>      <version>1.1-SNAPSHOT</version>
>
> @@ -107,7 +108,7 @@
>              <url>scp://people.apache.org/www/geronimo.apache.org/ 
> maven/genesis</url>
>          </site>
>      </distributionManagement>
> -
> +
>      <profiles>
>          <profile>
>              <id>default</id>
> @@ -168,6 +169,117 @@
>                      <url>file://${output.dir}/website</url>
>                  </site>
>              </distributionManagement>
> +        </profile>
> +        <profile>
> +            <!-- Problems: it's not signing JavaDoc and Source  
> JARs -->
> +            <id>staging</id>
> +
> +            <pluginRepositories>
> +                <pluginRepository>
> +                    <id>apache.org</id>
> +                    <name>Maven Plugin Snapshots</name>
> +                    <url>http://people.apache.org/repo/m2-snapshot- 
> repository</url>
> +                    <releases>
> +                        <enabled>false</enabled>
> +                    </releases>
> +                    <snapshots>
> +                        <enabled>true</enabled>
> +                    </snapshots>
> +                </pluginRepository>
> +            </pluginRepositories>
> +
> +            <build>
> +                <plugins>
> +                    <!-- We want the sources JAR published with  
> the release -->
> +                    <plugin>
> +                        <inherited>true</inherited>
> +                        <artifactId>maven-source-plugin</artifactId>
> +                        <version>2.0.2</version>
> +                        <executions>
> +                            <execution>
> +                                <id>attach-sources</id>
> +                                <goals>
> +                                    <goal>jar</goal>
> +                                </goals>
> +                            </execution>
> +                        </executions>
> +                    </plugin>
> +                    <!-- We want the JavaDoc JAR published with  
> the release -->
> +                    <plugin>
> +                        <inherited>true</inherited>
> +                        <artifactId>maven-javadoc-plugin</artifactId>
> +                        <version>2.2</version>
> +                        <configuration>
> +                            <source>1.5</source>
> +                        </configuration>
> +                        <executions>
> +                            <execution>
> +                                <id>attach-javadocs</id>
> +                                <goals>
> +                                    <goal>jar</goal>
> +                                </goals>
> +                            </execution>
> +                        </executions>
> +                    </plugin>
> +                    <!-- We want to deploy the artifact to a  
> staging location for perusal -->
> +                    <plugin>
> +                        <inherited>true</inherited>
> +                        <artifactId>maven-deploy-plugin</artifactId>
> +                        <version>2.3-SNAPSHOT</version>
> +                        <configuration>
> +                            <updateReleaseInfo>true</ 
> updateReleaseInfo>
> +                            <altDeploymentRepository>$ 
> {deploy.altRepository}</altDeploymentRepository>
> +                        </configuration>
> +                    </plugin>
> +                    <!-- We want to deploy the site to a staging  
> location for perusal -->
> +                    <plugin>
> +                        <artifactId>maven-site-plugin</artifactId>
> +                        <version>2.0-beta-5</version>
> +                        <executions>
> +                            <execution>
> +                                <goals>
> +                                    <goal>stage-deploy</goal>
> +                                </goals>
> +                                <configuration>
> +                                    <stagingSiteURL>$ 
> {staging.siteURL}</stagingSiteURL>
> +                                </configuration>
> +                            </execution>
> +                        </executions>
> +                    </plugin>
> +                    <!-- We want to sign the artifact, the POM,  
> and all attached artifacts -->
> +                    <plugin>
> +                        <artifactId>maven-gpg-plugin</artifactId>
> +                        <version>1.0-alpha-1</version>
> +                        <configuration>
> +                            <passphrase>${gpg.passphrase}</ 
> passphrase>
> +                        </configuration>
> +                        <executions>
> +                            <execution>
> +                                <goals>
> +                                    <goal>sign</goal>
> +                                </goals>
> +                            </execution>
> +                        </executions>
> +                    </plugin>
> +                    <!-- We want to package up license resources  
> in the JARs produced -->
> +                    <plugin>
> +                        <artifactId>maven-remote-resources-plugin</ 
> artifactId>
> +                        <version>1.0-alpha-1</version>
> +                        <executions>
> +                            <execution>
> +                                <goals>
> +                                    <goal>process</goal>
> +                                </goals>
> +                                <configuration>
> +                                    <resourceBundles>
> +                                         
> <resourceBundle>org.apache:apache-jar-resource-bundle:1.0</ 
> resourceBundle>
> +                                    </resourceBundles>
> +                                </configuration>
> +                            </execution>
> +                        </executions>
> +                    </plugin>
> +                </plugins>
> +            </build>
>          </profile>
>      </profiles>
>  </project>
>
>


Re: svn commit: r486949 - /geronimo/genesis/trunk/pom.xml

Posted by Jason Dillon <ja...@planet57.com>.
Er... inceptionYear for this is actually 2006... any specific reason  
why you added this?

--jason


On Dec 13, 2006, at 7:20 PM, dain@apache.org wrote:

> Author: dain
> Date: Wed Dec 13 19:20:25 2006
> New Revision: 486949
>
> URL: http://svn.apache.org/viewvc?view=rev&rev=486949
> Log:
> Added Jason Van Zyl's magic stagging profile
>
> Modified:
>     geronimo/genesis/trunk/pom.xml
>
> Modified: geronimo/genesis/trunk/pom.xml
> URL: http://svn.apache.org/viewvc/geronimo/genesis/trunk/pom.xml? 
> view=diff&rev=486949&r1=486948&r2=486949
> ====================================================================== 
> ========
> --- geronimo/genesis/trunk/pom.xml (original)
> +++ geronimo/genesis/trunk/pom.xml Wed Dec 13 19:20:25 2006
> @@ -34,6 +34,7 @@
>      <artifactId>genesis</artifactId>
>      <name>Genesis</name>
>      <packaging>pom</packaging>
> +    <inceptionYear>2003</inceptionYear>
>
>      <version>1.1-SNAPSHOT</version>
>
> @@ -107,7 +108,7 @@
>              <url>scp://people.apache.org/www/geronimo.apache.org/ 
> maven/genesis</url>
>          </site>
>      </distributionManagement>
> -
> +
>      <profiles>
>          <profile>
>              <id>default</id>
> @@ -168,6 +169,117 @@
>                      <url>file://${output.dir}/website</url>
>                  </site>
>              </distributionManagement>
> +        </profile>
> +        <profile>
> +            <!-- Problems: it's not signing JavaDoc and Source  
> JARs -->
> +            <id>staging</id>
> +
> +            <pluginRepositories>
> +                <pluginRepository>
> +                    <id>apache.org</id>
> +                    <name>Maven Plugin Snapshots</name>
> +                    <url>http://people.apache.org/repo/m2-snapshot- 
> repository</url>
> +                    <releases>
> +                        <enabled>false</enabled>
> +                    </releases>
> +                    <snapshots>
> +                        <enabled>true</enabled>
> +                    </snapshots>
> +                </pluginRepository>
> +            </pluginRepositories>
> +
> +            <build>
> +                <plugins>
> +                    <!-- We want the sources JAR published with  
> the release -->
> +                    <plugin>
> +                        <inherited>true</inherited>
> +                        <artifactId>maven-source-plugin</artifactId>
> +                        <version>2.0.2</version>
> +                        <executions>
> +                            <execution>
> +                                <id>attach-sources</id>
> +                                <goals>
> +                                    <goal>jar</goal>
> +                                </goals>
> +                            </execution>
> +                        </executions>
> +                    </plugin>
> +                    <!-- We want the JavaDoc JAR published with  
> the release -->
> +                    <plugin>
> +                        <inherited>true</inherited>
> +                        <artifactId>maven-javadoc-plugin</artifactId>
> +                        <version>2.2</version>
> +                        <configuration>
> +                            <source>1.5</source>
> +                        </configuration>
> +                        <executions>
> +                            <execution>
> +                                <id>attach-javadocs</id>
> +                                <goals>
> +                                    <goal>jar</goal>
> +                                </goals>
> +                            </execution>
> +                        </executions>
> +                    </plugin>
> +                    <!-- We want to deploy the artifact to a  
> staging location for perusal -->
> +                    <plugin>
> +                        <inherited>true</inherited>
> +                        <artifactId>maven-deploy-plugin</artifactId>
> +                        <version>2.3-SNAPSHOT</version>
> +                        <configuration>
> +                            <updateReleaseInfo>true</ 
> updateReleaseInfo>
> +                            <altDeploymentRepository>$ 
> {deploy.altRepository}</altDeploymentRepository>
> +                        </configuration>
> +                    </plugin>
> +                    <!-- We want to deploy the site to a staging  
> location for perusal -->
> +                    <plugin>
> +                        <artifactId>maven-site-plugin</artifactId>
> +                        <version>2.0-beta-5</version>
> +                        <executions>
> +                            <execution>
> +                                <goals>
> +                                    <goal>stage-deploy</goal>
> +                                </goals>
> +                                <configuration>
> +                                    <stagingSiteURL>$ 
> {staging.siteURL}</stagingSiteURL>
> +                                </configuration>
> +                            </execution>
> +                        </executions>
> +                    </plugin>
> +                    <!-- We want to sign the artifact, the POM,  
> and all attached artifacts -->
> +                    <plugin>
> +                        <artifactId>maven-gpg-plugin</artifactId>
> +                        <version>1.0-alpha-1</version>
> +                        <configuration>
> +                            <passphrase>${gpg.passphrase}</ 
> passphrase>
> +                        </configuration>
> +                        <executions>
> +                            <execution>
> +                                <goals>
> +                                    <goal>sign</goal>
> +                                </goals>
> +                            </execution>
> +                        </executions>
> +                    </plugin>
> +                    <!-- We want to package up license resources  
> in the JARs produced -->
> +                    <plugin>
> +                        <artifactId>maven-remote-resources-plugin</ 
> artifactId>
> +                        <version>1.0-alpha-1</version>
> +                        <executions>
> +                            <execution>
> +                                <goals>
> +                                    <goal>process</goal>
> +                                </goals>
> +                                <configuration>
> +                                    <resourceBundles>
> +                                         
> <resourceBundle>org.apache:apache-jar-resource-bundle:1.0</ 
> resourceBundle>
> +                                    </resourceBundles>
> +                                </configuration>
> +                            </execution>
> +                        </executions>
> +                    </plugin>
> +                </plugins>
> +            </build>
>          </profile>
>      </profiles>
>  </project>
>
>