mvn install FAIL on latest trunk
--------------------------------
Key: GEOS-2325
URL: http://jira.codehaus.org/browse/GEOS-2325
Project: GeoServer
Issue Type: Bug
Reporter: Mathew Wyatt
Assignee: Andrea Aime
When doing a mvn install on the latest trunk it fails because maven can't find the maven-assembly-plugin. The dependencies list was missing from the plugin.
I fixed this by changing the following:
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
<configuration>
<descriptors>
<descriptor>release/src.xml</descriptor>
<descriptor>release/war.xml</descriptor>
<descriptor>release/javadoc.xml</descriptor>
<descriptor>release/bin.xml</descriptor>
<descriptor>release/doc.xml</descriptor>
<descriptor>release/ext-db2.xml</descriptor>
<descriptor>release/ext-gml.xml</descriptor>
<descriptor>release/ext-mysql.xml</descriptor>
<descriptor>release/ext-oracle.xml</descriptor>
<descriptor>release/ext-vpf.xml</descriptor>
<descriptor>release/ext-arcsde.xml</descriptor>
<descriptor>release/ext-pyramid.xml</descriptor>
<descriptor>release/ext-wfsv.xml</descriptor>
<descriptor>release/ext-gwc.xml</descriptor>
<descriptor>release/ext-gdal.xml</descriptor>
<descriptor>release/ext-h2.xml</descriptor>
</descriptors>
<finalName>geoserver-2.0-SNAPSHOT</finalName>
<outputDirectory>${project.build.directory}/release</outputDirectory>
</configuration>
</plugin>
to
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
<configuration>
<descriptors>
<descriptor>release/src.xml</descriptor>
<descriptor>release/war.xml</descriptor>
<descriptor>release/javadoc.xml</descriptor>
<descriptor>release/bin.xml</descriptor>
<descriptor>release/doc.xml</descriptor>
<descriptor>release/ext-db2.xml</descriptor>
<descriptor>release/ext-gml.xml</descriptor>
<descriptor>release/ext-mysql.xml</descriptor>
<descriptor>release/ext-oracle.xml</descriptor>
<descriptor>release/ext-vpf.xml</descriptor>
<descriptor>release/ext-arcsde.xml</descriptor>
<descriptor>release/ext-pyramid.xml</descriptor>
<descriptor>release/ext-wfsv.xml</descriptor>
<descriptor>release/ext-gwc.xml</descriptor>
<descriptor>release/ext-gdal.xml</descriptor>
<descriptor>release/ext-h2.xml</descriptor>
</descriptors>
<finalName>geoserver-2.0-SNAPSHOT</finalName>
<outputDirectory>${project.build.directory}/release</outputDirectory>
</configuration>
<dependencies>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.1</version>
</dependency>
</dependencies>
</plugin>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira