Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 2.0.7
-
Fix Version/s: 2.0.11, 2.1.0, 3.0-alpha-3
-
Component/s: Sites & Reporting
-
Labels:None
-
Patch Submitted:Yes
-
Number of attachments :
Description
hi I have problem generating site when im using the command mvn site
it performs all stagegs and when it came to site generation the message is shown :
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
do u have an idea what is the problem ?
p.s the jar is registered in my local repository and in the remote repository
thank u
Issue Links
- is related to
-
MNG-4847
The skin does not exist: Unable to determine the release version
-
-
MNGFAQ-121
What should I do when I encounter the error "The skin does not exist: Unable to determine the release version org.apache.maven.skins:maven-default-skin:jar:RELEASE"
-
- relates to
-
MNG-4465
[regression] can't run mvn help:effective-settings when offline
-
For some reason Maven is unable to find the default skin from the repository. You could try to add the version for the skin in your site.xml, like this:
<skin> <groupId>org.apache.maven.skins</groupId> <artifactId>maven-default-skin</artifactId> <version>maven-default-skin</version> </skin>