You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by dj...@apache.org on 2008/03/10 07:17:08 UTC

svn commit: r635446 - in /geronimo/genesis/trunk: config/project-config/pom.xml legal-bundle/src/main/resources/META-INF/DEPENDENCIES.vm plugins/maven-maven-plugin/NOTICE.txt pom.xml

Author: djencks
Date: Sun Mar  9 23:17:06 2008
New Revision: 635446

URL: http://svn.apache.org/viewvc?rev=635446&view=rev
Log:
hardcode legal bundle version in m-r-r-p. Fix DEPENDENCIES. add rat plugin. 

Removed:
    geronimo/genesis/trunk/plugins/maven-maven-plugin/NOTICE.txt
Modified:
    geronimo/genesis/trunk/config/project-config/pom.xml
    geronimo/genesis/trunk/legal-bundle/src/main/resources/META-INF/DEPENDENCIES.vm
    geronimo/genesis/trunk/pom.xml

Modified: geronimo/genesis/trunk/config/project-config/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/genesis/trunk/config/project-config/pom.xml?rev=635446&r1=635445&r2=635446&view=diff
==============================================================================
--- geronimo/genesis/trunk/config/project-config/pom.xml (original)
+++ geronimo/genesis/trunk/config/project-config/pom.xml Sun Mar  9 23:17:06 2008
@@ -334,7 +334,7 @@
                         </goals>
                         <configuration>
                           <resourceBundles>
-                              <resourceBundle>org.apache.geronimo.genesis:legal-bundle:${version}</resourceBundle>
+                              <resourceBundle>org.apache.geronimo.genesis:legal-bundle:1.4-SNAPSHOT</resourceBundle>
                           </resourceBundles>
                         </configuration>
                       </execution>

Modified: geronimo/genesis/trunk/legal-bundle/src/main/resources/META-INF/DEPENDENCIES.vm
URL: http://svn.apache.org/viewvc/geronimo/genesis/trunk/legal-bundle/src/main/resources/META-INF/DEPENDENCIES.vm?rev=635446&r1=635445&r2=635446&view=diff
==============================================================================
--- geronimo/genesis/trunk/legal-bundle/src/main/resources/META-INF/DEPENDENCIES.vm (original)
+++ geronimo/genesis/trunk/legal-bundle/src/main/resources/META-INF/DEPENDENCIES.vm Sun Mar  9 23:17:06 2008
@@ -29,9 +29,9 @@
 From: '$organizationName.name'#if($organizationName.url) ($organizationName.url)#end
 
 #foreach ( $project in $projectsSortedByOrganization.get( $organizationName ) )
-  - $project.name ($project.url) $project.artifact
+  - $project.name #if ($project.url)($project.url)#end $project.artifact
 #foreach ( $license in $project.licenses)
-      License: $license.name #if ($license.url) ($license.url)#end
+    License: $license.name #if ($license.url) ($license.url)#end
 #end
 
 #end

Modified: geronimo/genesis/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/genesis/trunk/pom.xml?rev=635446&r1=635445&r2=635446&view=diff
==============================================================================
--- geronimo/genesis/trunk/pom.xml (original)
+++ geronimo/genesis/trunk/pom.xml Sun Mar  9 23:17:06 2008
@@ -83,18 +83,21 @@
 
                 <plugin>
                     <inherited>true</inherited>
+                    <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-gpg-plugin</artifactId>
                     <version>1.0-alpha-4</version>
                 </plugin>
 
                 <plugin>
                     <inherited>true</inherited>
+                    <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-deploy-plugin</artifactId>
                     <version>2.3</version>
                 </plugin>
 
                 <plugin>
                     <inherited>true</inherited>
+                    <groupId>org.apache.maven.plugins</groupId>
                     <artifactId>maven-javadoc-plugin</artifactId>
                     <version>2.3</version>
                 </plugin>
@@ -122,6 +125,16 @@
                     <artifactId>maven-site-plugin</artifactId>
                     <version>2.0-beta-6</version>
                 </plugin>
+
+                <plugin>
+                    <groupId>org.codehaus.mojo</groupId>
+                    <artifactId>rat-maven-plugin</artifactId>
+                    <version>1.0-alpha-3</version>
+                    <configuration>
+                        <excludeSubProjects>false</excludeSubProjects>
+                    </configuration>
+                </plugin>
+
             </plugins>
         </pluginManagement>
 
@@ -143,6 +156,11 @@
                     <jdkLevel>1.5</jdkLevel>
                     <linkModules>true</linkModules>
                 </configuration>
+            </plugin>
+
+            <plugin>
+                <groupId>org.codehaus.mojo</groupId>
+                <artifactId>rat-maven-plugin</artifactId>
             </plugin>
 
         </plugins>