Details
-
Type:
Improvement
-
Status:
Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: 0.5
-
Fix Version/s: None
-
Component/s: dependency management
-
Labels:None
Description
Provide a simple way to have the features of the maven plugin "maven-dependency-plugin".
Especially for the plugin goals "copy" and "unpack"
Now, we use Ant :
dependencies.resolve("testRuntime").each{ depFile ->
ant.copy(file: depFile, todir: 'somePath')
}
dependencies.resolve("testRuntime").each{depFile ->
ant.unzip(src: depFile, dest:'somePath')
}
Do you still think this is necessary considering the new copy/archive API of 0.9?