diff options
author | mattinger <[email protected]> | 2007-03-06 16:42:27 +0000 |
---|---|---|
committer | mattinger <[email protected]> | 2007-03-06 16:42:27 +0000 |
commit | c77e5e8a5858321532754628d8ca37498984aabf (patch) | |
tree | 0e4bb29f3f34acaf55696e88c4d347eeda440771 | |
parent | a7226f78b9ec1e0d3e35f0f91ccaba28f4e1d84c (diff) |
git-svn-id: file:///home/sven/projects/JOGL/temp/ant-contrib/svn/ant-contrib-code/trunk/ant-contrib@91 32d7a393-a5a9-423c-abd3-5d954feb1f2f
-rwxr-xr-x | src/java/net/sf/antcontrib/net/URLImportTask.java | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/java/net/sf/antcontrib/net/URLImportTask.java b/src/java/net/sf/antcontrib/net/URLImportTask.java index 21b776c..b64c6a8 100755 --- a/src/java/net/sf/antcontrib/net/URLImportTask.java +++ b/src/java/net/sf/antcontrib/net/URLImportTask.java @@ -229,7 +229,10 @@ public class URLImportTask ModuleDescriptor desc = resolveReport.getModuleDescriptor();
List artifacts = resolveReport.getArtifacts();
Artifact artifact = (Artifact) artifacts.get(0);
- log("Fetched revision " + artifact.getModuleRevisionId().getRevision());
+ log("Fetched " +
+ artifact.getModuleRevisionId().getOrganisation() + " | " +
+ artifact.getModuleRevisionId().getName() + " | " +
+ artifact.getModuleRevisionId().getRevision());
File file = ivy.getArchiveFileInCache(ivy.getDefaultCache(), artifact);
File importFile = null;
|