You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by "Poppe, Troy" <Tr...@eia.doe.gov> on 2005/01/05 19:44:04 UTC

Building maven-scm-1.5-branch

I'm trying to get started on a VSS provider for Maven SCM, but I'm having some
trouble getting some of the base project stuff to compile.  And I'm terribly lost
at this point.

Specifically when I try to execute any goal in maven-scm-1.5-branch, it's failing
to resolve three dependencies:

Attempting to download maven-scm-api-1.0-alpha-1-SNAPSHOT.jar.
WARNING: Failed to download maven-scm-api-1.0-alpha-1-SNAPSHOT.jar.
Attempting to download maven-scm-provider-cvs-1.0-alpha-1-SNAPSHOT.jar.
WARNING: Failed to download maven-scm-provider-cvs-1.0-alpha-1-SNAPSHOT.jar.
Attempting to download maven-scm-provider-svn-1.0-alpha-1-SNAPSHOT.jar.
WARNING: Failed to download maven-scm-provider-svn-1.0-alpha-1-SNAPSHOT.jar.
The build cannot continue because of the following unsatisfied dependencies:

maven-scm-api-1.0-alpha-1-SNAPSHOT.jar
maven-scm-provider-cvs-1.0-alpha-1-SNAPSHOT.jar
maven-scm-provider-svn-1.0-alpha-1-SNAPSHOT.jar

Now, I remember hearing from someone that the maven-scm-api and
maven-scm-provider-xxx were based off maven2 rather than maven1.

I guess my question is, what am I going to need in terms of versions of software,
remote repository locations, etc. in order to build a VSS provider...

Any help would be greatly appreciated to help get me started... Once I get past
that, I hope I'll be a little better off on my own.

Thanks.

Troy


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


Re: Building maven-scm-1.5-branch

Posted by Brett Porter <br...@gmail.com>.
I'll reply on scm-dev. Please, don't crosspost.

Thanks,
Brett

On Wed, 5 Jan 2005 13:44:04 -0500, Poppe, Troy <Tr...@eia.doe.gov> wrote:
> 
> I'm trying to get started on a VSS provider for Maven SCM, but I'm having some
> trouble getting some of the base project stuff to compile.  And I'm terribly lost
> at this point.
> 
> Specifically when I try to execute any goal in maven-scm-1.5-branch, it's failing
> to resolve three dependencies:
> 
> Attempting to download maven-scm-api-1.0-alpha-1-SNAPSHOT.jar.
> WARNING: Failed to download maven-scm-api-1.0-alpha-1-SNAPSHOT.jar.
> Attempting to download maven-scm-provider-cvs-1.0-alpha-1-SNAPSHOT.jar.
> WARNING: Failed to download maven-scm-provider-cvs-1.0-alpha-1-SNAPSHOT.jar.
> Attempting to download maven-scm-provider-svn-1.0-alpha-1-SNAPSHOT.jar.
> WARNING: Failed to download maven-scm-provider-svn-1.0-alpha-1-SNAPSHOT.jar.
> The build cannot continue because of the following unsatisfied dependencies:
> 
> maven-scm-api-1.0-alpha-1-SNAPSHOT.jar
> maven-scm-provider-cvs-1.0-alpha-1-SNAPSHOT.jar
> maven-scm-provider-svn-1.0-alpha-1-SNAPSHOT.jar
> 
> Now, I remember hearing from someone that the maven-scm-api and
> maven-scm-provider-xxx were based off maven2 rather than maven1.
> 
> I guess my question is, what am I going to need in terms of versions of software,
> remote repository locations, etc. in order to build a VSS provider...
> 
> Any help would be greatly appreciated to help get me started... Once I get past
> that, I hope I'll be a little better off on my own.
> 
> Thanks.
> 
> Troy
> 
>

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


Re: Building maven-scm-1.5-branch

Posted by Brett Porter <br...@gmail.com>.
Hi Troy,

You shouldn't have to do any work on the scm plugin itself. If a
maven-scm-provider-vss JAR existed, and it were added as a dependency
to the plugin, the VSS support will just work.

What you need to do is first install m2.
1) Check out maven-components from CVS
2) read the instructions in the top level directory

Then, check out maven-scm from CVS. Run:
m2 pom:install
cd maven-scm-api
m2 jar:install
cd ..
cd maven-scm-test
m2 jar:install
cd ..

To build and test the CVS provider,
cd mavne-scm-providers
m2 pom:install
cd maven-scm-provider-cvs
m2 jar:install

Then, you can create a VSS provider based on the CVS one. (the hard bit :)

Thanks for your help!

Cheers,
Brett

On Wed, 5 Jan 2005 13:44:04 -0500, Poppe, Troy <Tr...@eia.doe.gov> wrote:
> 
> I'm trying to get started on a VSS provider for Maven SCM, but I'm having some
> trouble getting some of the base project stuff to compile.  And I'm terribly lost
> at this point.
> 
> Specifically when I try to execute any goal in maven-scm-1.5-branch, it's failing
> to resolve three dependencies:
> 
> Attempting to download maven-scm-api-1.0-alpha-1-SNAPSHOT.jar.
> WARNING: Failed to download maven-scm-api-1.0-alpha-1-SNAPSHOT.jar.
> Attempting to download maven-scm-provider-cvs-1.0-alpha-1-SNAPSHOT.jar.
> WARNING: Failed to download maven-scm-provider-cvs-1.0-alpha-1-SNAPSHOT.jar.
> Attempting to download maven-scm-provider-svn-1.0-alpha-1-SNAPSHOT.jar.
> WARNING: Failed to download maven-scm-provider-svn-1.0-alpha-1-SNAPSHOT.jar.
> The build cannot continue because of the following unsatisfied dependencies:
> 
> maven-scm-api-1.0-alpha-1-SNAPSHOT.jar
> maven-scm-provider-cvs-1.0-alpha-1-SNAPSHOT.jar
> maven-scm-provider-svn-1.0-alpha-1-SNAPSHOT.jar
> 
> Now, I remember hearing from someone that the maven-scm-api and
> maven-scm-provider-xxx were based off maven2 rather than maven1.
> 
> I guess my question is, what am I going to need in terms of versions of software,
> remote repository locations, etc. in order to build a VSS provider...
> 
> Any help would be greatly appreciated to help get me started... Once I get past
> that, I hope I'll be a little better off on my own.
> 
> Thanks.
> 
> Troy
> 
>