Author: ltheussl
Date: Mon May  1 13:23:24 2006
New Revision: 398677

URL: http://svn.apache.org/viewcvs?rev=398677&view=rev
Log:
New property maven.changelog.useDeveloperConnection.

Modified:
    maven/maven-1/plugins/trunk/changelog/plugin.jelly
    maven/maven-1/plugins/trunk/changelog/plugin.properties
    maven/maven-1/plugins/trunk/changelog/xdocs/changes.xml
    maven/maven-1/plugins/trunk/changelog/xdocs/properties.xml

Modified: maven/maven-1/plugins/trunk/changelog/plugin.jelly
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/changelog/plugin.jelly?rev=398677&r1=398676&r2=398677&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/changelog/plugin.jelly (original)
+++ maven/maven-1/plugins/trunk/changelog/plugin.jelly Mon May  1 13:23:24 2006
@@ -70,6 +70,10 @@
         <j:if test="${empty(_connection)}">
           <j:set 
var="_connection">${pom.repository.developerConnection}</j:set>
         </j:if>
+        <j:set 
var="_useDeveloperConnection">${maven.changelog.useDeveloperConnection}</j:set>
+        <j:if test="${_useDeveloperConnection}">
+          <j:set 
var="_connection">${pom.repository.developerConnection}</j:set>
+        </j:if>
         <j:if test="${!empty(_connection)}">
           <!-- Make sure the correct properties are set -->
           <j:switch on="${maven.changelog.type}">

Modified: maven/maven-1/plugins/trunk/changelog/plugin.properties
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/changelog/plugin.properties?rev=398677&r1=398676&r2=398677&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/changelog/plugin.properties (original)
+++ maven/maven-1/plugins/trunk/changelog/plugin.properties Mon May  1 13:23:24 
2006
@@ -30,3 +30,4 @@
 #maven.changelog.tag =
 
 maven.changelog.quoteDate=false
+#maven.changelog.useDeveloperConnection=
\ No newline at end of file

Modified: maven/maven-1/plugins/trunk/changelog/xdocs/changes.xml
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/changelog/xdocs/changes.xml?rev=398677&r1=398676&r2=398677&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/changelog/xdocs/changes.xml (original)
+++ maven/maven-1/plugins/trunk/changelog/xdocs/changes.xml Mon May  1 13:23:24 
2006
@@ -25,6 +25,7 @@
   </properties>
   <body>
     <release version="1.10" date="In SVN">
+      <action dev="ltheussl" type="add">New property 
<code>maven.changelog.useDeveloperConnection</code>.</action>
       <action dev="ltheussl" type="add" issue="MPCHANGELOG-86" 
due-to="Christoph Jerolimov">Support time period in MKS changelog 
parser.</action>
       <action dev="aheritier" type="update" issue="MAVEN-1753">Upgrade to 
Xerces 2.8.0. Replace the deprecated xmlParserAPIs by xml-apis 1.3.03. Add the 
xml-resolver dependency for xerces.</action>
       <action dev="aheritier" type="update">Upgrade to Junit 3.8.2.</action>

Modified: maven/maven-1/plugins/trunk/changelog/xdocs/properties.xml
URL: 
http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/changelog/xdocs/properties.xml?rev=398677&r1=398676&r2=398677&view=diff
==============================================================================
--- maven/maven-1/plugins/trunk/changelog/xdocs/properties.xml (original)
+++ maven/maven-1/plugins/trunk/changelog/xdocs/properties.xml Mon May  1 
13:23:24 2006
@@ -159,6 +159,15 @@
             Currently only used by cvs. Defaults to <code>false</code>.
           </td>
         </tr>
+        <tr>
+          <td>maven.changelog.useDeveloperConnection</td>
+          <td>Yes</td>
+          <td>
+            Set this to <code>true</code> to use the 
<code>repository/developerConnection</code>
+            pom element for connecting to the source repository.
+            Default is to use the <code>repository/connection</code> element.
+          </td>
+        </tr>
       </table>
     </section>
     <section name="Other properties">


Reply via email to