> Date: Sun, 30 Mar 2014 12:57:29 +0200
> From: khmarba...@gmx.de
> To: dev@maven.apache.org
> Subject: Maven Build Systems
>
> Hi,
>
> just wan't to know if i'm right...
> Currently i got messages from the Apache build system like this:
>
> The project org.apache.maven.plugins:maven-plugins:26-SNAPSHOT
> (/x1/jenkins/jenkins-slave/workspace/maven-plugins-ITs-m3/maven-plugins/pom.xml)
>
> has 1 error
> [ERROR] Non-resolvable parent POM: Could not find artifact
> org.apache.maven:maven-parent:pom:24 in central
> (http://repo.maven.apache.org/maven2) and 'parent.relativePath' points
> at wrong local POM @ line 23, column 11 -> [Help 2]
MG>relativePath doesnt point to parent pom but points to thin air..commenting
out fixes
MG>
MG>Switching topics to maven-site-plugin the way I got it to work was
MG>clean folder run plugin maven-project-info-reports-plugin e.g.
MG><plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>2.7</version>
<configuration>
<maven.site.deploy.skip>false</maven.site.deploy.skip>
<dependencyDetailsEnabled>false</dependencyDetailsEnabled>
<dependencyLocationsEnabled>false</dependencyLocationsEnabled>
</configuration>
</plugin>
MG>a valid site.xml *should* be located in /src/site
MG>all applicable *.html *should* be located in /target/site in target/apidocs
or target/xref or target/examples
MG>images should be stored in /target/images folder
MG>css files should be stored in /target/css folder
MG>Velocity Macros *should* be stored in base folder where they are used e.g.
/examples/selective-project-info-reports.apt.vm
MG>Almost Plain Text should be stored in /src/site/apt folder e.g.
/src/site/apt/index.apt
MG>FWIK these are all the files that maven-site-plugin will deploy no change in
files, layout or structure
MG>site generation to the best of my knowledge is now complete so you *should*
be able to deploy with
MG>mvn site:deploy
MG>IF you want a more capable deployer I would look at Puppet Enterprise
MG>Does this answer your questions/concerns on mvn-site-plugin?
MG>Martin
>
> Kind regards
> Karl-Heinz Marbaise
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscr...@maven.apache.org
> For additional commands, e-mail: dev-h...@maven.apache.org
>