o creating an all-in-one assembly for tool integration use

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@291631 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jason van Zyl 2005-09-26 14:33:28 +00:00
parent fe929c8a62
commit 69fc4d27ea
1 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,28 @@
<assembly>
<!-- TODO: a jarjar format would be better -->
<id>dep</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<!-- TODO: use expressions instead: ${project.build.directory}, ${project.build.finalName}, or have a <build /> tag to include the built artifact -->
<directory>target/classes</directory>
<outputDirectory>/</outputDirectory>
</fileSet>
</fileSets>
<dependencySets>
<dependencySet>
<outputDirectory>/</outputDirectory>
<unpack>true</unpack>
<scope>runtime</scope>
<excludes>
<exclude>junit:junit</exclude>
<exclude>commons-lang:commons-lang</exclude>
<exclude>commons-logging:commons-logging</exclude>
<exclude>jline:jline</exclude>
</excludes>
</dependencySet>
</dependencySets>
</assembly>