The reason it is failing is because you are trying to utilize SNAPSHOT artifacts and yet you have not configured a Snapshot repository in your pom.xml.
It looks like you're trying to compile Maven itself, or something along those lines? Why are you doing this? This is generally something that rookies should avoid doing. What exactly are you trying to do? Perhaps you can post your pom.xml somewhere so we can take a look and help you figure things out. Wayne On 2/12/08, krishnan.1000 <[EMAIL PROTECTED]> wrote: > > Hi , > > I am a rookie using Maven. I have got this error. I have created this pom > and I dont know what is causing this error. I looked at the forum but I did > not understand what was being discussed%-O > > Please help me. > > Thanks, > > Karthik > 1) org.codehaus.plexus:plexus-compiler-javac:jar:1.6-SNAPSHOT > > Try downloading the file manually from the project website. > > Then, install it using the command: > mvn install:install-file -DgroupId=org.codehaus.plexus > -DartifactId=plexus-compiler-javac -Dversion=1.6-SNAPSHOT -Dpackaging=jar > -Dfile=/path/to/file > > Alternatively, if you host your own repository you can deploy the file > there: > mvn deploy:deploy-file -DgroupId=org.codehaus.plexus > -DartifactId=plexus-compiler-javac -Dversion=1.6-SNAPSHOT -Dpackaging=jar > -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id] > > Path to dependency: > 1) > org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:2.1-SNAPSHOT > 2) org.codehaus.plexus:plexus-compiler-javac:jar:1.6-SNAPSHOT > > 2) org.codehaus.plexus:plexus-compiler-api:jar:1.6-SNAPSHOT > > Try downloading the file manually from the project website. > > Then, install it using the command: > mvn install:install-file -DgroupId=org.codehaus.plexus > -DartifactId=plexus-compiler-api -Dversion=1.6-SNAPSHOT -Dpackaging=jar > -Dfile=/path/to/file > > Alternatively, if you host your own repository you can deploy the file > there: > mvn deploy:deploy-file -DgroupId=org.codehaus.plexus > -DartifactId=plexus-compiler-api -Dversion=1.6-SNAPSHOT -Dpackaging=jar > -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id] > > Path to dependency: > 1) > org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:2.1-SNAPSHOT > 2) org.codehaus.plexus:plexus-compiler-api:jar:1.6-SNAPSHOT > > 3) org.codehaus.plexus:plexus-compiler-manager:jar:1.6-SNAPSHOT > > Try downloading the file manually from the project website. > > Then, install it using the command: > mvn install:install-file -DgroupId=org.codehaus.plexus > -DartifactId=plexus-compiler-manager -Dversion=1.6-SNAPSHOT -Dpackaging=jar > -Dfile=/path/to/file > > Alternatively, if you host your own repository you can deploy the file > there: > mvn deploy:deploy-file -DgroupId=org.codehaus.plexus > -DartifactId=plexus-compiler-manager -Dversion=1.6-SNAPSHOT -Dpackaging=jar > -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id] > > Path to dependency: > 1) > org.apache.maven.plugins:maven-compiler-plugin:maven-plugin:2.1-SNAPSHOT > 2) org.codehaus.plexus:plexus-compiler-manager:jar:1.6-SNAPSHOT > -- > View this message in context: > http://www.nabble.com/Maven-does-not-compile%3Aorg.codehaus.plexus%3Aplexus-compiler-javac%3Ajar%3A1.6-SNAPSHOT-tp15447362s177p15447362.html > Sent from the Maven - Users mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
