|
Hello everyone. I just started to try and do some testing of the 1.1.2 release and noticed a possible problem when I cleared out my maven repo so that I could do a clean build. When building the core-impl package, maven went and grabbed myfaces-shared-impl-2.0.1-SNAPSHOT.jar for the repackaging bit. Shouldn’t it be getting myfaces-shared-impl-2.0.0.jar?
Found the following bit in the pom.xml that is triggering this:
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>dependency-maven-plugin</artifactId> <executions> <execution> <id>unpack-shared-impl</id> <phase>process-classes</phase> <goals><goal>unpack</goal></goals> <configuration> <artifactItems> <artifactItem> <groupId>org.apache.myfaces.shared</groupId> <artifactId>myfaces-shared-impl</artifactId> <version>2.0.1-SNAPSHOT</version> </artifactItem> </artifactItems> <outputDirectory>${project.build.directory}/classes</outputDirectory> </configuration> </execution> </executions> </plugin>
Thanks, Jeremy
|
- Core 1.1.2 Branch - Incorrect Dependency? Jeremy J. Grelle
- Re: Core 1.1.2 Branch - Incorrect Dependency? Sean Schofield
- RE: Core 1.1.2 Branch - Incorrect Dependency? Jeremy J. Grelle
- Re: Core 1.1.2 Branch - Incorrect Dependency? Mike Kienenberger
- Re: Core 1.1.2 Branch - Incorrect Dependenc... Sean Schofield
- Re: Core 1.1.2 Branch - Incorrect Depen... Mario Ivankovits
- Re: Core 1.1.2 Branch - Incorrect ... Mario Ivankovits
- Re: Core 1.1.2 Branch - Incorr... Sean Schofield
