etc/samples/provisioning/sample-bundle/pom.xml | 1 + pom.xml | 7 +++++++ 2 files changed, 8 insertions(+)
New commits: commit 619a4932fbe348057905cff266f70fe1de476e77 Author: Jay Shaughnessy jshaughn@redhat.com Date: Fri Oct 29 16:08:27 2010 -0400
The assembly plugin now requires a non-empty <id>someId</id> element in the assembly XML. But that value will, by default, be tacked on to the final artifact name. In general we don't want that to happen because we already specifiy <finalName> in the pom config. So, in the root pom change the default to avoid tacking on the <id> value.
diff --git a/etc/samples/provisioning/sample-bundle/pom.xml b/etc/samples/provisioning/sample-bundle/pom.xml index 6bd4a88..697b6c4 100644 --- a/etc/samples/provisioning/sample-bundle/pom.xml +++ b/etc/samples/provisioning/sample-bundle/pom.xml @@ -73,6 +73,7 @@ <descriptor>src/main/scripts/assembly.xml</descriptor> </descriptors> <finalName>${project.build.finalName}</finalName> + <appendAssemblyId>false</appendAssemblyId> </configuration> <executions> <execution> diff --git a/pom.xml b/pom.xml index 06be211..82f2458 100644 --- a/pom.xml +++ b/pom.xml @@ -792,6 +792,13 @@ </configuration> </plugin>
+ <plugin> + <artifactId>maven-assembly-plugin</artifactId> + <configuration> + <appendAssemblyId>false</appendAssemblyId> + </configuration> + </plugin> + </plugins>
</build>
rhq-commits@lists.fedorahosted.org