You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm-users@maven.apache.org by Damon Rand <da...@cybermagic.co.nz> on 2010/05/05 02:16:09 UTC

Upgrading my pom to the latest release of the git extension

Hi,

I'm trying to use 1.3 of the gitexe scm extension.. I've tried forcing
this in the extensions section..

<extensions>
			<extension>
		    <groupId>org.apache.maven.wagon</groupId>
		    <artifactId>wagon-scm</artifactId>
		    <version>1.0-beta-6</version>
			</extension>
			<extension>
			  <groupId>org.apache.maven.scm</groupId>
			  <artifactId>maven-scm-manager-plexus</artifactId>
			  <version>1.3</version>
			</extension>
			<extension>
			  <groupId>org.apache.maven.scm</groupId>
			  <artifactId>maven-scm-provider-svnexe</artifactId>
			  <version>1.1</version> <!-- Nothing above 1.1 works for me right now -->
			</extension>
			<extension>
			  <groupId>org.apache.maven.scm</groupId>
			  <artifactId>maven-scm-provider-gitexe</artifactId>
			  <version>1.3</version>
			</extension>

But no matter what I do it uses 1.1 which has a nasty bug..

Any ideas?

Regards,
Damon.