use artifacts for path, not dependencies
git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113593 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -54,10 +54,10 @@
|
||||
todir="${libdir}"/>
|
||||
|
||||
<!-- Copy each dep to our working dir -->
|
||||
<j:forEach var="dep" items="${pom.dependencies}">
|
||||
<j:forEach var="lib" items="${pom.artifacts}">
|
||||
<copy
|
||||
todir="${libdir}"
|
||||
file="${maven.repo.local}/${dep.artifactDirectory}/jars/${dep.artifact}"/>
|
||||
file="${lib.path}"/>
|
||||
</j:forEach>
|
||||
|
||||
<!-- Copy the classworlds.jar -->
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
<!-- The version of the project under development, e.g.
|
||||
1.1, 1.2, 2.0-dev -->
|
||||
|
||||
<currentVersion>1.0</currentVersion>
|
||||
<currentVersion>1.1-SNAPSHOT</currentVersion>
|
||||
<!-- a short description of what the project does -->
|
||||
|
||||
<shortDescription>Uberjar packages your project as well as its dependencies into a single jar file. In addition, bootstrap code is added that enables a main class to be invoked by simply typing: java -jar your.jar</shortDescription>
|
||||
|
||||
@@ -6,7 +6,13 @@
|
||||
</properties>
|
||||
|
||||
<body>
|
||||
<release version="0.8" date="in CVS">
|
||||
<release version="1.1" date="in CVS">
|
||||
<action dev="dion" type="fix">
|
||||
Changed copy of dependencies to use artifacts, so that jar overrides would work
|
||||
</action>
|
||||
</release>
|
||||
|
||||
<release version="0.8" date="Unknown">
|
||||
<action dev="werken" type="add">
|
||||
The two properties, maven.uberjar.main and
|
||||
maven.uberjar.classworlds.conf, can now be specified via a
|
||||
|
||||
Reference in New Issue
Block a user