PR: MPFILEACTIVITY-2

File activity plugin creates wrong links for Subversion repositories.
Use maven.changelog.svn.baseurl property.


git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@369866 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
ltheussl 2006-01-17 19:02:31 +00:00
parent 853642fa8b
commit 0429883da7
3 changed files with 6 additions and 1 deletions

View File

@ -63,7 +63,8 @@
<j:set var="maven.mode.online" value="true" />
</j:if>
<maven:pluginVar var="factory" plugin="maven-changelog-plugin" property="maven.changelog.factory" />
<maven:get var="factory" plugin="maven-changelog-plugin" property="maven.changelog.factory" />
<maven:get var="maven.changelog.svn.baseurl" plugin="maven-changelog-plugin" property="maven.changelog.svn.baseurl" />
<j:choose>
<j:when test="${maven.mode.online}">

View File

@ -92,6 +92,9 @@
<j:when test="${pom.repository.connection.startsWith('scm:perforce')}">
<j:set var="urlFile" value="${repository.trim()}${name.trim()}?ac=22"/>
</j:when>
<j:when test="${pom.repository.connection.startsWith('scm:svn')}">
<j:set var="urlFile" value="${maven.changelog.svn.baseurl.trim()}${name.trim()}"/>
</j:when>
<j:otherwise>
<j:set var="urlFile" value="${repository.trim()}${name.trim()}${oneRepoParam.trim()}"/>
</j:otherwise>

View File

@ -24,6 +24,7 @@
</properties>
<body>
<release version="1.6-SNAPSHOT" date="In SVN">
<action dev="ltheussl" type="fix" issue="MPFILEACTIVITY-2">File activity plugin creates wrong links for Subversion repositories. Use <code>maven.changelog.svn.baseurl</code> property.</action>
<action dev="aheritier" type="update" issue="MAVEN-1712">Update dependencies to match ones in maven 1.1 core and to unify them between plugins. The following dependencies are updated :
<ul>
<li>commons-jelly-tags-xml v1.0 -> v1.1</li>