You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ni...@apache.org on 2006/06/06 18:36:10 UTC

svn commit: r412167 - in /jakarta/commons/proper/chain/trunk: project.properties project.xml xdocs/building.xml xdocs/changes.xml

Author: niallp
Date: Tue Jun  6 09:36:10 2006
New Revision: 412167

URL: http://svn.apache.org/viewvc?rev=412167&view=rev
Log:
Various minor changes for docs/build:
- Add build instructions for JDK 1.3 and Changelog configuration
- Make default changelog configuration show changes in the last year (Chain doesn't change much)
- Update release notes to add missing revisions
- Add commented out dependency for JDK 1.3

Modified:
    jakarta/commons/proper/chain/trunk/project.properties
    jakarta/commons/proper/chain/trunk/project.xml
    jakarta/commons/proper/chain/trunk/xdocs/building.xml
    jakarta/commons/proper/chain/trunk/xdocs/changes.xml

Modified: jakarta/commons/proper/chain/trunk/project.properties
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/chain/trunk/project.properties?rev=412167&r1=412166&r2=412167&view=diff
==============================================================================
--- jakarta/commons/proper/chain/trunk/project.properties (original)
+++ jakarta/commons/proper/chain/trunk/project.properties Tue Jun  6 09:36:10 2006
@@ -19,6 +19,7 @@
 #maven.repo.remote=http://www.ibiblio.org,http://maven-plugins.sf.net/maven
 maven.changelog.factory=org.apache.maven.svnlib.SvnChangeLogFactory
 maven.changes.issue.template=%URL%/browse/%ISSUE% 
+maven.changelog.range=365
 
 maven.compile.source=1.3
 maven.compile.target=1.3

Modified: jakarta/commons/proper/chain/trunk/project.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/chain/trunk/project.xml?rev=412167&r1=412166&r2=412167&view=diff
==============================================================================
--- jakarta/commons/proper/chain/trunk/project.xml (original)
+++ jakarta/commons/proper/chain/trunk/project.xml Tue Jun  6 09:36:10 2006
@@ -132,6 +132,14 @@
       <artifactId>junit</artifactId>
       <version>3.8.1</version>
     </dependency>
+    <!-- un-comment to build with JDK 1.3
+    <dependency>
+      <groupId>xml-apis</groupId>
+      <artifactId>xml-apis</artifactId>
+      <version>2.0.2</version>
+      <url>http://xml.apache.org/commons/</url>
+    </dependency>
+    -->
     <dependency>
       <groupId>commons-beanutils</groupId>
       <artifactId>commons-beanutils</artifactId>

Modified: jakarta/commons/proper/chain/trunk/xdocs/building.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/chain/trunk/xdocs/building.xml?rev=412167&r1=412166&r2=412167&view=diff
==============================================================================
--- jakarta/commons/proper/chain/trunk/xdocs/building.xml (original)
+++ jakarta/commons/proper/chain/trunk/xdocs/building.xml Tue Jun  6 09:36:10 2006
@@ -46,6 +46,40 @@
 	Further details can be found in the
 	<a href="http://jakarta.apache.org/commons/building.html">commons build instructions</a>.
   </p>
+  <subsection name="Changelog Report">
+    <p>
+      The default configuration for the 
+      <a href="http://maven.apache.org/maven-1.x/plugins/changelog/">Changelog Report</a>
+      is to show changes within the last year. If however you wish to see changes since a
+      specified date you can override the configuration by adding a <b>build.properties</b>
+      file to the Commons Chain directory. For example to show all the changes since the
+      Chain 1.0 release, you would have the following in the <b>build.properties</b>:
+    </p>
+    <p><source><![CDATA[
+maven.changelog.type=date
+maven.changelog.date=2004-12-09
+]]></source></p>
+    <p>
+      Unfortunately, an issue with Subversion imports means that this report will only pick
+      up changes since the last import - which in the case of the ASF repository was December 2005.
+      If you require the changelog report to show changes prior to December 2005 for Commons Chain
+      then you can use the workaround described
+      <a href="http://www.niallp.pwp.blueyonder.co.uk/ChangelogSubversionIssue.html">here</a>.
+    </p>
+  </subsection>
+  <subsection name="Building With JDK 1.3">
+    <p>
+      Commons Chain can be built using <b>JDK 1.3</b> - however you will need to modify the
+      <b>project.xml</b> to add an additional dependency for <b>xml apis</b>:
+    </p>
+    <p><source><![CDATA[
+<dependency>
+    <groupId>xml-apis</groupId>
+    <artifactId>xml-apis</artifactId>
+    <version>2.0.2</version>
+    <url>http://xml.apache.org/commons/</url>
+</dependency>]]></source></p>
+  </subsection>
 </section>
 <!-- ================================================== -->
 <section name="Ant Goals">

Modified: jakarta/commons/proper/chain/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jakarta/commons/proper/chain/trunk/xdocs/changes.xml?rev=412167&r1=412166&r2=412167&view=diff
==============================================================================
--- jakarta/commons/proper/chain/trunk/xdocs/changes.xml (original)
+++ jakarta/commons/proper/chain/trunk/xdocs/changes.xml Tue Jun  6 09:36:10 2006
@@ -40,9 +40,11 @@
 
     <release version="1.1-SNAPSHOT" date="in SVN">
       <action dev="niallp" type="add" issue="CHAIN-28">
+         <a href="http://svn.apache.org/viewvc?view=rev&amp;revision=411948">r 411948</a>
         Provide a Map of Cookies in the WebContext.
       </action>
       <action dev="niallp" type="fix" issue="CHAIN-29">
+         <a href="http://svn.apache.org/viewvc?view=rev&amp;revision=411893">r 411893</a>
          Remove Static <code>Log</code> instances - see
          <a href="http://wiki.apache.org/jakarta-commons/Logging/StaticLog">here</a>.
       </action>
@@ -78,7 +80,8 @@
       <action dev="craigmcc" type="fix" issue="CHAIN-12">
         <dueto name="Jeff Ramsdale"/>
         <dueto name="Dennis Lundberg"/>
-         <a href="http://svn.apache.org/viewvc?view=rev&amp;revision=161600">r 161600</a>
+         <a href="http://svn.apache.org/viewvc?view=rev&amp;revision=161600">r 161600</a> and
+         <a href="http://svn.apache.org/viewvc?view=rev&amp;revision=412150">r 412150</a>
          Make ContextBase live up to the Serializable contract that it inherits by virtue of extending HashMap.
       </action>
       <action dev="martinc" type="update">



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org