vote up 0 vote down star

Hey Everyone,

I am working on a security project at my university for open source software. I am trying to build freemarker from source, but I am running into some problems. Everything that I can find online says that simple running 'ant' in the root directory should build the project. The only requirement is that you have ant v1.7.0 installed, which I do.

When I go into the root directory and type 'ant' I get the following output :





Buildfile: build.xml

init:

_autoget-deps:

update-deps: [echo] Getting dependencies... [echo] -------------------------------------------------------

BUILD FAILED /media/osr/runs/java/freemarker/freemarker/trunk/freemarker/build.xml:64: The following error occurred while executing this line: /media/osr/runs/java/freemarker/freemarker/trunk/freemarker/build.xml:567: The following error occurred while executing this line: /media/osr/runs/java/freemarker/freemarker/trunk/freemarker/build.xml:575: Problem: failed to create task or type antlib:org.apache.ivy.ant:settings Cause: The name is undefined. Action: Check the spelling. Action: Check that any custom tasks/types have been declared. Action: Check that any / declarations have taken place.

This appears to be an antlib declaration. Action: Check that the implementing library exists in one of: -/usr/share/ant/lib -/home/murrayj/.ant/lib -a directory added on the command line with the -lib argument

Total time: 0 seconds




I don't have a lot of experience working with ant and in some desperate need of some help! Any help is appreciated!

Thanks!

flag

25% accept rate

3 Answers

vote up 1 vote down

the build.xml does not have a default target. try this instead

ant compile

edit: changed target

link|flag
I tried running 'ant all' but got a BUILD FAILED error stating that Target "all" does not exist in the project. – John Jul 1 at 4:40
@johnmurray, i have changed the target, please give it a try. – akf Jul 1 at 13:25
vote up 0 vote down

You'll also need Apache Ivy. We've changed the build process for some time now; it now uses Ivy instead of manual dependency management.

link|flag
Can I add ivy simply by downloading the ivy JAR file and adding it to the ant/lib directory? – John Jul 1 at 14:24
vote up 0 vote down

After installing ivy, running

ant compile

worked just fine.

Thank you!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.