Author: jvanzyl
Date: Mon Sep 26 07:33:28 2005
New Revision: 291631
URL: http://svn.apache.org/viewcvs?rev=291631&view=rev
Log:
o creating an all-in-one assembly for tool integration use
Added:
maven/components/trunk/maven-embedder/src/main/assembly/
maven/components/trunk/maven-embedder/src/main/assembly/dep.xml
Added: maven/components/trunk/maven-embedder/src/main/assembly/dep.xml
URL:
http://svn.apache.org/viewcvs/maven/components/trunk/maven-embedder/src/main/assembly/dep.xml?rev=291631&view=auto
==============================================================================
--- maven/components/trunk/maven-embedder/src/main/assembly/dep.xml (added)
+++ maven/components/trunk/maven-embedder/src/main/assembly/dep.xml Mon Sep 26
07:33:28 2005
@@ -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>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]