Jeff Mutonho wrote:
I've started getting a new error message during my project build.The error
says :

[ERROR] BUILD FAILURE
[INFO]
------------------------------------------------------------------------
[INFO] The skin does not exist: Unable to determine the release version

Try downloading the file manually from the project website.

Then, install it using the command:
   mvn install:install-file
-DgroupId=org.apache.maven.skins-DartifactId=maven-default-skin \
       -Dversion=RELEASE -Dpackaging=jar -Dfile=/path/to/file


 org.apache.maven.skins:maven-default-skin:jar:RELEASE


What is causing this?

Something in your build is trying to use maven-default-skin with the version "RELEASE" which can not be found. Try running

  mvn help:effective-pom

to see if that can give you a clue to who is doing this.

Another option is to run

  mvn -X ...

to turn on debugging. That might also give you some hints.



--
Dennis Lundberg

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to