From: Morten K. <mor...@us...> - 2005-12-20 12:36:38
|
mortenkr 05/12/20 04:36:18 Modified: files project.xml files/src/main/org/apache/maven/files Generator.java files/xdocs news.xml changes.xml Log: New version 1.1 of plugin Revision Changes Path 1.4 +6 -1 maven-plugins/files/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/files/project.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- project.xml 11 Oct 2005 06:29:04 -0000 1.3 +++ project.xml 20 Dec 2005 12:36:16 -0000 1.4 @@ -10,7 +10,7 @@ <!-- groupId is in parent --> - <currentVersion>1.0</currentVersion> + <currentVersion>1.1</currentVersion> <!-- organization is in parent --> @@ -34,6 +34,11 @@ <versions> <version> + <id>1.1</id> + <name>1.1</name> + <tag>MAVEN_PLUGINS_FILES_1_1</tag> + </version> + <version> <id>1.0</id> <name>1.0</name> <tag>MAVEN_PLUGINS_FILES_1_0</tag> 1.2 +3 -0 maven-plugins/files/src/main/org/apache/maven/files/Generator.java Index: Generator.java =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/files/src/main/org/apache/maven/files/Generator.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- Generator.java 7 Mar 2005 10:32:59 -0000 1.1 +++ Generator.java 20 Dec 2005 12:36:17 -0000 1.2 @@ -154,6 +154,9 @@ } File[] children = docsDestFolder.listFiles(); + + // Make sure files are sorted + java.util.Arrays.sort(children); // Assure that folder is not null. if (children != null) { 1.2 +5 -4 maven-plugins/files/xdocs/news.xml Index: news.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/files/xdocs/news.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- news.xml 5 Apr 2005 21:37:39 -0000 1.1 +++ news.xml 20 Dec 2005 12:36:17 -0000 1.2 @@ -3,11 +3,12 @@ <body> - <section name="Current status"> - <p>Version 1.0 of plugin released 05.04.2005.</p> - </section> - <news> + <entry name="20.12.2005"> + <p> + Version 1.1 of plugin released. See <a href="changes-report.html">Changes</a>. + </p> + </entry> <entry name="05.04.2005"> <p> Version 1.0 of plugin released. 1.3 +3 -0 maven-plugins/files/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/files/xdocs/changes.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- changes.xml 5 Apr 2005 21:37:39 -0000 1.2 +++ changes.xml 20 Dec 2005 12:36:17 -0000 1.3 @@ -2,6 +2,9 @@ <document> <body> + <release version="1.1" date="20.12.2005"> + <action type="add" dev="mortenkr">Sorting filenames in site. Thanks to Kjetil Kristiansen.</action> + </release> <release version="1.0" date="05.04.2005"> <action type="add" dev="mortenkr">Version 1.0 released</action> </release> |