Hi,
I added the ChangeLog Plugin in Maven2. But I get the following error:
[INFO] Executing: svn --non-interactive log -v -r "{2009-02-11 16:57:46
+0000}:{
2009-03-14 16:57:46 +0000}" https://my-co-srvr/ABC_tools/ABC-tool
s-src/ABC-maven/jarred-test-wsdls
[INFO] Working directory:
C:\ABC_tools\ABC-tools-src\ABC-maven\trunk\jarred-test
-wsdls
[ERROR] Provider message:
[ERROR] The svn command failed.
[ERROR] Command output:
[ERROR] svn:
'/ABC_tools/!svn/bc/39/ABC-tools-src/ABC-maven/jarred-test-wsdls' p
ath not found
This is because the correct paths need to be svn --non-interactive log -v
-r "{2009-02-11 16:57:46 +0000}:{
2009-03-14 16:57:46 +0000}" https://my-co-srvr/ABC_tools/ABC-tool
s-src/ABC-maven/trunk/jarred-test-wsdls
How can I pass the branch name as trunk ? My POM.xml looks like this:
<scm>
<connection>
scm:svn:https://my-co-srvr/ABC_tools/ABC-tools-src/ABC-maven
</connection>
<developerConnection>
scm:svn:https://my-co-srvr/atx_tools/ABC-tools-src/ABC-maven/trunk
</developerConnection>
<tag>HEAD</tag>
<url>https://my-co-srvr/ABC_tools/ABC-tools-src/ABC-maven</url>
</scm>
<dependency>
<groupId>org.apache.maven.scm</groupId>
<artifactId>maven-scm-provider-svnexe</artifactId>
<version>1.1</version>
</dependency>
</dependencies>
<properties>
<maven-scm.version>1.0-beta-4</maven-scm.version>
</properties>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-changelog-plugin</artifactId>
<configuration>
</configuration>
</plugin>
--
View this message in context:
http://www.nabble.com/changelog-plugin-SVN-issue-tp22514686p22514686.html
Sent from the Maven - SCM mailing list archive at Nabble.com.