[Geoserver-devel] [jira] Created: (GEOS-4095) Dependencies version conflict in GeoServer 2.0.2 sources

Dependencies version conflict in GeoServer 2.0.2 sources
--------------------------------------------------------

                 Key: GEOS-4095
                 URL: http://jira.codehaus.org/browse/GEOS-4095
             Project: GeoServer
          Issue Type: Bug
    Affects Versions: 2.0.2
            Reporter: BBP
            Assignee: Andrea Aime
            Priority: Minor

The pom.xml (GeoServer/maven/config/pom.xml) specify the version 2.1 for maven-plugin-tools-ant but not for maven-plugin-plugin. Maven get the last version of maven-plugin-plugin which do not work with version 2.1 of maven-plugin-tools-ant

File: GeoServer/maven/config/pom.xml
Line: 22
Add: <version>2.1</version>
[...]
<build>
  <plugins>
   <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-plugin-plugin</artifactId>
    <version>2.1</version>
    <!-- Add the Ant plugin tools -->
    <dependencies>
     <dependency>
      <groupId>org.apache.maven</groupId>
      <artifactId>maven-plugin-tools-ant</artifactId>
      <version>2.1</version>
     </dependency>
    </dependencies>
    <configuration>
     <prefix>config</prefix>
    </configuration>
   </plugin>
  </plugins>
</build>
[...]

--
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