Author: niallp
Date: Wed May 21 14:21:05 2008
New Revision: 658881

URL: http://svn.apache.org/viewvc?rev=658881&view=rev
Log:
Upgrade to Logging 1.1.1 and Collections 3.2.1, remove ${basedir} from 
checkstyle and specify external links for javadocs

Modified:
    commons/proper/beanutils/trunk/build.properties.sample
    commons/proper/beanutils/trunk/checkstyle.xml
    commons/proper/beanutils/trunk/pom.xml
    commons/proper/beanutils/trunk/project.xml

Modified: commons/proper/beanutils/trunk/build.properties.sample
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/build.properties.sample?rev=658881&r1=658880&r2=658881&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/build.properties.sample (original)
+++ commons/proper/beanutils/trunk/build.properties.sample Wed May 21 14:21:05 
2008
@@ -18,12 +18,12 @@
 
 # The pathname of the collections classes JAR file
 commons-collections.home=${repository}/commons-collections/jars
-commons-collections.jar=${commons-collections.home}/commons-collections-3.2.jar
-commons-collections-testframework.jar=${commons-collections.home}/commons-collections-testframework-3.2.jar
+commons-collections.jar=${commons-collections.home}/commons-collections-3.2.1.jar
+commons-collections-testframework.jar=${commons-collections.home}/commons-collections-testframework-3.2.1.jar
 
 # The pathname of the Commons Logging JAR file
 commons-logging.home=${repository}/commons-logging/jars
-commons-logging.jar=${commons-logging.home}/commons-logging-1.1.jar
+commons-logging.jar=${commons-logging.home}/commons-logging-1.1.1.jar
 
 # The pathname of the "junit.jar" JAR file
 junit.home=${repository}/junit/jars

Modified: commons/proper/beanutils/trunk/checkstyle.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/checkstyle.xml?rev=658881&r1=658880&r2=658881&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/checkstyle.xml (original)
+++ commons/proper/beanutils/trunk/checkstyle.xml Wed May 21 14:21:05 2008
@@ -44,7 +44,7 @@
       <property name="allowUndeclaredRTE" value="true"/>
     </module>
     <module name="Header">
-      <property name="headerFile" value="${basedir}/LICENSE-header.txt"/>
+      <property name="headerFile" value="LICENSE-header.txt"/>
     </module>
  </module>
 </module>

Modified: commons/proper/beanutils/trunk/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/pom.xml?rev=658881&r1=658880&r2=658881&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/pom.xml (original)
+++ commons/proper/beanutils/trunk/pom.xml Wed May 21 14:21:05 2008
@@ -140,18 +140,18 @@
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>
-      <version>1.0.4</version>
+      <version>1.1.1</version>
     </dependency>
     <dependency>
       <groupId>commons-collections</groupId>
       <artifactId>commons-collections</artifactId> 
-      <version>3.2</version> 
+      <version>3.2.1</version> 
       <optional>true</optional>
     </dependency>
     <dependency>
       <groupId>commons-collections</groupId>
       <artifactId>commons-collections-testframework</artifactId> 
-      <version>3.2</version> 
+      <version>3.2.1</version> 
       <scope>test</scope>
     </dependency>
     <dependency>
@@ -270,6 +270,18 @@
                     <minSeverity>info</minSeverity>
                 </configuration>
             </plugin>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-javadoc-plugin</artifactId>
+                <version>2.4</version>
+                <configuration>
+                    <linksource>true</linksource>
+                    <links>
+                        <link>http://java.sun.com/j2se/1.4.2/docs/api/</link>
+                        
<link>http://commons.apache.org/collections/api-release/</link>
+                    </links>
+                </configuration>
+            </plugin>
         </plugins>
     </reporting>
 

Modified: commons/proper/beanutils/trunk/project.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/project.xml?rev=658881&r1=658880&r2=658881&view=diff
==============================================================================
--- commons/proper/beanutils/trunk/project.xml (original)
+++ commons/proper/beanutils/trunk/project.xml Wed May 21 14:21:05 2008
@@ -169,14 +169,14 @@
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>
-      <version>1.0.4</version>
+      <version>1.1.1</version>
       <url>http://commons.apache.org/logging/</url>
     </dependency>
 
     <dependency>
       <groupId>commons-collections</groupId>
       <artifactId>commons-collections</artifactId> 
-      <version>3.2</version> 
+      <version>3.2.1</version> 
       <url>http://commons.apache.org/collections/</url>
       <properties>
           <optional>true</optional>
@@ -191,7 +191,7 @@
     <dependency>
       <groupId>commons-collections</groupId>
       <artifactId>commons-collections-testframework</artifactId> 
-      <version>3.2</version> 
+      <version>3.2.1</version> 
       <url>http://commons.apache.org/collections/</url>
       <properties>
           <scope>test</scope>


Reply via email to