Skip to content

Instantly share code, notes, and snippets.

@dmacvicar
Created July 31, 2013 12:14
Show Gist options
  • Save dmacvicar/6121468 to your computer and use it in GitHub Desktop.
Save dmacvicar/6121468 to your computer and use it in GitHub Desktop.
diff --git a/java/buildconf/build-taskdefs.xml b/java/buildconf/build-taskdefs.xml
index 121905f..551bc59 100644
--- a/java/buildconf/build-taskdefs.xml
+++ b/java/buildconf/build-taskdefs.xml
@@ -1,17 +1,17 @@
<project name="build-taskdefs">
<target name="init-ivy" depends="boot-deps" unless="installbuild">
<taskdef name="ivy-retrieve"
- classname="fr.jayasoft.ivy.ant.IvyRetrieve"
- classpathref="bootjars"/>
+ classname="org.apache.ivy.ant.IvyRetrieve"
+ classpathref="bootjars" />
<taskdef name="ivy-configure"
- classname="fr.jayasoft.ivy.ant.IvyConfigure"
- classpathref="bootjars"/>
+ classname="org.apache.ivy.ant.IvyConfigure"
+ classpathref="bootjars" />
<taskdef name="ivy-resolve"
- classname="fr.jayasoft.ivy.ant.IvyResolve"
- classpathref="bootjars"/>
+ classname="org.apache.ivy.ant.IvyResolve"
+ classpathref="bootjars" />
<taskdef name="ivy-publish"
- classname="fr.jayasoft.ivy.ant.IvyPublish"
- classpathref="bootjars"/>
+ classname="org.apache.ivy.ant.IvyPublish"
+ classpathref="bootjars" />
</target>
<target name="init-taskdefs" depends="link-jars,compile-internal"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment