Author: niallp
Date: Wed Feb  3 02:12:00 2010
New Revision: 905867

URL: http://svn.apache.org/viewvc?rev=905867&view=rev
Log:
Reorganize site to standard m2 layout (now there is no longer an m1 build)
 - move/rename xdocs directory to site/xdoc
 - remove xdocs/images and xdocs/style directories
 - copied site/changes/changes.xml from trunk
 - add maven-changes-plugin in pom.xml
 - remove xdocs directory from assembly/src.xml
 - remove xdocs directory from ant build.xml
 - remove redundant conf directory

Added:
    commons/proper/lang/branches/LANG_2_X/src/site/changes/
      - copied from r905855, commons/proper/lang/trunk/src/site/changes/
    commons/proper/lang/branches/LANG_2_X/src/site/xdoc/
      - copied from r905734, commons/proper/lang/branches/LANG_2_X/xdocs/
Removed:
    commons/proper/lang/branches/LANG_2_X/src/conf/
    commons/proper/lang/branches/LANG_2_X/src/site/xdoc/images/
    commons/proper/lang/branches/LANG_2_X/src/site/xdoc/style/
    commons/proper/lang/branches/LANG_2_X/xdocs/
Modified:
    commons/proper/lang/branches/LANG_2_X/build.xml
    commons/proper/lang/branches/LANG_2_X/pom.xml
    commons/proper/lang/branches/LANG_2_X/src/assembly/src.xml
    commons/proper/lang/branches/LANG_2_X/src/site/changes/changes.xml

Modified: commons/proper/lang/branches/LANG_2_X/build.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/lang/branches/LANG_2_X/build.xml?rev=905867&r1=905866&r2=905867&view=diff
==============================================================================
--- commons/proper/lang/branches/LANG_2_X/build.xml (original)
+++ commons/proper/lang/branches/LANG_2_X/build.xml Wed Feb  3 02:12:00 2010
@@ -220,7 +220,6 @@
                                 RELEASE-NOTES.txt"
              />
             <zipfileset dir="${basedir}/src"   prefix="${final.name}-src/src"/>
-            <zipfileset dir="${basedir}/xdocs" 
prefix="${final.name}-src/xdocs"/>
         </zip>
         <tar destfile="${build.home}/${final.name}-src.tar.gz" 
compression="gzip">
             <zipfileset src="${build.home}/${final.name}-src.zip"/>

Modified: commons/proper/lang/branches/LANG_2_X/pom.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/lang/branches/LANG_2_X/pom.xml?rev=905867&r1=905866&r2=905867&view=diff
==============================================================================
--- commons/proper/lang/branches/LANG_2_X/pom.xml (original)
+++ commons/proper/lang/branches/LANG_2_X/pom.xml Wed Feb  3 02:12:00 2010
@@ -418,8 +418,10 @@
   </dependencies> 
 
   <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
     <maven.compile.source>1.3</maven.compile.source>
-    <maven.compile.target>1.2</maven.compile.target>
+    <maven.compile.target>1.3</maven.compile.target>
     <commons.componentid>lang</commons.componentid>
     <commons.release.version>2.4</commons.release.version>
     <commons.jira.id>LANG</commons.jira.id>
@@ -456,6 +458,22 @@
 
   <reporting>
     <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-changes-plugin</artifactId>
+          <version>2.3</version>
+          <configuration>
+            <xmlPath>${basedir}/src/site/changes/changes.xml</xmlPath>
+            <issueLinkTemplate>%URL%/%ISSUE%</issueLinkTemplate>
+          </configuration>
+          <reportSets>
+            <reportSet>
+              <reports>
+                 <report>changes-report</report>
+              </reports>
+            </reportSet>
+          </reportSets>
+        </plugin>
       <plugin>
         <artifactId>maven-checkstyle-plugin</artifactId>
         <version>2.3</version>

Modified: commons/proper/lang/branches/LANG_2_X/src/assembly/src.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/lang/branches/LANG_2_X/src/assembly/src.xml?rev=905867&r1=905866&r2=905867&view=diff
==============================================================================
--- commons/proper/lang/branches/LANG_2_X/src/assembly/src.xml (original)
+++ commons/proper/lang/branches/LANG_2_X/src/assembly/src.xml Wed Feb  3 
02:12:00 2010
@@ -41,8 +41,5 @@
         <fileSet>
             <directory>src</directory>
         </fileSet>
-        <fileSet>
-            <directory>xdocs</directory>
-        </fileSet>
     </fileSets>
 </assembly>

Modified: commons/proper/lang/branches/LANG_2_X/src/site/changes/changes.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/lang/branches/LANG_2_X/src/site/changes/changes.xml?rev=905867&r1=905855&r2=905867&view=diff
==============================================================================
--- commons/proper/lang/branches/LANG_2_X/src/site/changes/changes.xml 
(original)
+++ commons/proper/lang/branches/LANG_2_X/src/site/changes/changes.xml Wed Feb  
3 02:12:00 2010
@@ -27,6 +27,51 @@
     <action type="fix" issue="LANG-571">ArrayUtils.add(T[] array[, offset], T 
element) can create unexpected ClassCastException</action>
   </release>
 
+  <release version="2.5" date="Unreleased" description="">
+    <action type="fix" issue="LANG-506">Entities missing final modifiers; 
thread-safety issues</action>
+    <action type="fix" issue="LANG-584">ExceptionUtils - use immutable lock 
target</action>
+    <action type="fix" issue="LANG-494">CharSet - Synchronizing the COMMON Map 
so that getInstance doesn't miss a put from a subclass in another 
thread</action>
+    <action type="add" issue="LANG-514">CharRange - add more readable static 
builder methods</action>
+    <action type="fix" issue="LANG-523">
+        StrBuilder - Performance improvement to StrBuilder by doubling the 
size of the String
+         in ensureCapacity. Tests indicate a hundredhold improvement in 
appending speed, which seems
+         worth the doubling of data size.
+     </action>
+    <action type="add" issue="LANG-422">StrBuilder - add appendSeparator() 
methods with an alternative default separator if the StrBuilder is currently 
empty</action>
+    <action type="add" issue="LANG-522">Mutable numbers - add string 
constructors </action>
+    <action type="add">MutableBoolean - add toBoolean(), isTrue() and 
isFalse() methods</action>
+    <action type="fix" issue="LANG-487">ToStringBuilder - make default style 
thread-safe</action>
+    <action type="fix" issue="LANG-574">HashCodeBuilder - Performance 
improvement: check for isArray to short-circuit the 9 instanceof 
checks.</action>
+    <action type="fix" issue="LANG-520">HashCodeBuilder - Changing the 
hashCode() method to return toHashCode()</action>
+    <action type="fix" issue="LANG-467">EqualsBuilder - removing the special 
handling of BigDecimal (LANG-393) to use compareTo instead of equals because it 
creates an inequality with HashCodeBuilder</action>
+    <action type="add" issue="LANG-466">EqualsBuilder - add reset() 
method</action>
+    <action type="fix" issue="LANG-575">Compare, Equals and HashCode builders 
- replacing the creation of a List in the core of each Builder class to test 
contains on the excludeFields with a call to ArrayUtils.contains()</action>
+    <action type="fix" issue="LANG-547">FastDateFormat - Remove unused 
field</action>
+    <action type="fix" issue="LANG-538">FastDateFormat - need to call 
getTime() on a calendar sometimes to get it in the right state, otherwise the 
timezone gets out of whack</action>
+    <action type="add" issue="LANG-486">DateUtils - add parseDateStrictly() 
method method</action>
+    <action type="fix" issue="LANG-530">DateUtils - Fix parseDate() cannot 
parse ISO8601 dates produced by FastDateFormat</action>
+    <action type="add" issue="LANG-434">DateUtils - add ceiling() 
method</action>
+    <action type="fix" issue="LANG-521">NumberUtils - isNumber(String) and 
createNumber(String) both modified to support '2.'</action>
+    <action type="add" issue="LANG-461">NumberUtils - add toByte() and 
toShort() methods</action>
+    <action type="add" issue="LANG-471">StringUtils - add isAllUpperCase() and 
isAllLowerCase() methods</action>
+    <action type="add" issue="LANG-438">StringUtils - add repeat() 
method</action>
+    <action type="fix" issue="LANG-432">StringUtils - improve handling of 
case-insensitive Strings</action>
+    <action type="add" issue="LANG-405">StringUtils - add abbreviateMiddle() 
method</action>
+    <action type="add" issue="LANG-569">StringUtils - add indexOfIgnoreCase() 
and lastIndexOfIgnoreCase() methods</action>
+    <action type="add" issue="LANG-469">StringUtils - add lastOrdinalIndexOf() 
method to complement the existing ordinalIndexOf() method</action>
+    <action type="fix" issue="LANG-552">StringUtils - replaceEach(String, 
String[], String[]) no longer NPEs when null appears in the last 
String[]</action>
+    <action type="add" issue="LANG-555">SystemUtils - add IS_OS_WINDOWS_7 
constant</action>
+    <action type="add" issue="LANG-554">SystemUtils - add IS_JAVA_1_7 constant 
for JDK 1.7</action>
+    <action type="fix" issue="LANG-500">ClassUtils - improving performance of 
getAllInterfaces</action>
+    <action type="update" issue="LANG-535">
+       ClassUtils - add support to getShortClassName and getPackageName for 
arrays, including primitive arrays
+        and multi-dimensional arrays. Also stopped getPackageName relying on 
the underlying class.getPackage
+        as it's sometimes null
+     </action>
+    <action type="fix" issue="LANG-567">ArrayUtils - addAll() does not handle 
mixed types very well</action>
+    <action type="fix" issue="LANG-477">ExtendedMessageFormat - OutOfMemory 
with custom format registry and a pattern containing single quotes</action>
+  </release>
+
   <release version="2.4" date="2008-03-18" description="">
     <action type="add" issue="LANG-322">ClassUtils.getShortClassName(String) 
inefficient</action>
     <action type="add" issue="LANG-269">Shouldn't Commons Lang's StringUtils 
have a "common" string method?</action>


Reply via email to