0
votes
2answers
24 views

Classpath is not working

I got source code from Hermes (hermes2_src_20100121). When I extracted it has about 10 folders which is separate projects. /myd1/Exetel/Hermes_SRC/ebxml-pkg /myd1/Exetel/Hermes_SRC/CorvusEbMS ...
2
votes
1answer
26 views

How to add eclipse project's class patth to ant script?

What is the easiest way to add project's classpath to custom ant script inside this project? Actually I need to be able to run java tasks with current project's classpath. Project can contain manual ...
0
votes
1answer
32 views

Ant as a dependency in a project that also uses ant for building/testing

In our Java project, we'd like to make use of a third-party jar that happens to have Apache Ant as one of its dependencies. However, we also use ant to build our project and run our test suite, and ...
0
votes
1answer
31 views

Ivy - Specifying compile/runtime classpath with Ivy

I have a project that has two different jars with both containing some of the same classes. What I need is for it to use the classes from Jar "A" before Jar "B". In normal Java compilation (and with ...
0
votes
0answers
52 views

Ant task failing to delete/rename jar files that are in the classpath of parent project

I've created a simple Ant build.xml script which updates a JAR file in my applications lib directory with a JAR (having the same name) from an external directory. <target name="deleteJar"> ...
1
vote
0answers
32 views

Ant script fails finding explicit classpath

I want to compile a Java file. On the console I'm doing this: javac -cp "/home/user/java/ClickRecommender/build:/home/user/java/ClickRecommender/src/.:/home/user/java/ClickRecommender/libs/*" ...
0
votes
3answers
53 views

Include libs folder containing .jars for compilation

I have the following file structure: ServerCode <- src , libs, bin I am trying to compile all the code in src. Src has a couple of .java files at the top level and sub-directories. libs contains ...
0
votes
1answer
52 views

Jar-program built by Ant doesn't see the class with the explicitly set classpath

So, here's my build.xml: <?xml version="1.0"?> <project name="test" default="hello_jar"> <path id="commons" > <fileset dir="lib"> <include ...
1
vote
2answers
52 views

Setting java classpath only when compiling

Is it possible to set the class path only when using javac but then run the program without specifying the class path at java? For example, I am using ant that does the compiling for me and it sets ...
0
votes
1answer
189 views

MongoDB java driver: Exception in thread “main” java.lang.NoClassDefFoundError: com/mongodb/MongoClient

After I included the jar lib in ant build.xml, I still got the error: Exception in thread "main" java.lang.NoClassDefFoundError: com/mongodb/MongoClient My ant related configuration are as below: ...
0
votes
1answer
45 views

Ant System Class Loader does not honor $CLASSPATH, honors $LOCALCLASSPATH

I am implementing an ant task as a wrapper for another class, which loads other several classes using the system class loader. Now, the task is in the same jar of these other classes, so I wonder why ...
0
votes
2answers
113 views

java classpath issues when starting Cooja

I have to run the well-known java-based Cooja simulator, extended with some classes I've made, under Ubuntu 12.04. In my java file I recall the jfreechart packages: import ...
0
votes
1answer
49 views

Creating Ant classpath out of project names

In an ant build script I have a list of projects we are depending on. I need to create a classpath for compilation. I have: included.projects=ProjectA, ProjectB and I need: ...
0
votes
1answer
42 views

Task classpath in ant : Java

I've an error when I execute this in my ant and I don't understand why ant can't recognize the task classpath : <?xml version="1.0"?> <project default="task"> <target name="task"> ...
1
vote
1answer
142 views

Ant test compile cant find main classes

I have an Ant build that is compiling my main classes correctly, but failing when it goes to compile my test classes, because it cannot find the symbols for any of my main classes: Project directory ...
2
votes
2answers
139 views

Adding a folder generated at runtime as source folder using Ant in Eclipse

I am using the following bunch of softwares: Ant 1.7.1 Eclipse Helios Java 1.6 Apache thrift 0.8.0 I am using Thrift to generate java source code in Ant using the following code block: <exec ...
0
votes
2answers
134 views

Ant can't find an ant class (DateUtils) while building

I'm trying to get a project to build via ant. It builds just fine via ant on my local machine, but on our build machine I get : java.lang.NoClassDefFoundError: org/apache/tools/ant/util/DateUtils ...
1
vote
2answers
282 views

Difference between setting classpath in build.xml using fileset and pathelement

I have a build file that declares the classpath as shown <path id="compile.classpath"> <fileset dir="${basedir}/lib" includes="**"/> <fileset dir="${jboss.home}/lib" ...
0
votes
1answer
459 views

Ant javac classpathref not working?

The javac task in my compile target fails despite the required jars being on the classpath. Could anyone help me figure out why this is happening? The error below is caused because ...
1
vote
2answers
95 views

javafxpackager error

I try to pack my javafx project with javafxpackager. Everything works good (package is created), but I get error Error: jfxrt.jar needs to be on classpath for -createbss and for -createJar without ...
0
votes
1answer
57 views

How to make ant recognize junit.jar inside project repository

I have a project that uses JUnit for unit tests. The problem is that when I try to compile and run my project from Eclipse, everything works excellent, but when I try to compile with Ant, I get tons ...
2
votes
2answers
231 views

How can I make Ant use JAXB 2.2.x instead of Java 6 SE JAXB classes in javac?

I'm in the process of updating a legacy application to use Java 6 SE instead of Java 5 SE. The app uses JAXB, and under Java 5 SE it have the JAXB reference implementation jars on the classpath. When ...
1
vote
2answers
215 views

ANT - Converting a String to Path with location attribute

I have the following ANT script that gives me a list of websphere libraries at runtime based on the websphere root directory. I need to convert the resulting string into separate path location ...
0
votes
1answer
558 views

Not able to locate org.openqa.selenium class using ant to run a webdriver script

I am using Apache ANT to run my webdriver script. My project structure is as follows: ant_webdriver_project - src - test.ant.webdriver - TestLogin.java - JRE System Libraries - Referenced ...
2
votes
1answer
228 views

How to force Class.forName to look inside jar only?

Please, imagine a folder which has two files MyApp.jar B.class (real path is long) Inside the jar there is some code to check whether B.class exists inside jar-file. try { Class.forName("B"); ...
0
votes
1answer
44 views

How to show Assembled Ant Classpath

I'm developing a Java project using Eclipse, and Ant as a build tool. When I run "ant all" from the command line, my project builds without any errors, but on Eclipse I get many compilation errors. ...
0
votes
1answer
45 views

Include non-android project in android project (lib or classpath)

I'm trying to import a non-android project into my android-project in eclipse. I've tried everything, but nothing works. I've added the project into my classpath -> noclassdeffounderror I've created ...
0
votes
2answers
360 views

Flyway can't find Spring Java migrations on the classpath when using Ant

I have Flyway set up in my project with the following directory layout (excluding irrelevant directories): $ tree database database ├── lib │ ├── flyway-ant-2.0.1.jar │ ├── flyway-core-2.0.1.jar ...
0
votes
1answer
54 views

How are content within a Java classpath identified?

If I add a .jar file to a classpath, then edit some content in the .jar file, can the content still be identified within the classpath? Example, using Ant: Read a set of .class and .property files ...
0
votes
3answers
562 views

Setting Class-Path in Ant build script

I'm trying to build my console application and I'm using Ant to build it. I can run my application in Eclipse, but when I try to run it from jar that I get - the ClassNotFoundException: is thrown. ...
0
votes
2answers
744 views

Ant JUnit ClassNotFoundException

I realize there are a lot of similar questions as this one, however after reading over most of them I seem to be having the same problem, but for different reasons. I'm running a <junit> task ...
0
votes
1answer
511 views

Ant's runtime classpath can't find dependencies for javac

I am trying to get Ant to compile my project, which has the following directory structure: MyProject/ src/main/java/ com/ <The rest of my source> gen/ bin/ ...
0
votes
2answers
166 views

Java NoClassDefFoundError when running jar containing library jar

After several hours, I'm at my wit's end, even after reading reams of documentation and SO questions. I'm certain that I'm missing something obvious, but I just can't figure it out. I've created a ...
4
votes
5answers
218 views

Is it correct or incorrect for a Java JAR to contain its own dependencies?

I guess this is a two-part question. I am trying to write my own Ant task (MyFirstTask) that can be used in other project's build.xml buildfiles. To do this, I need to compile and package my Ant task ...
0
votes
2answers
183 views

Using JDK 6 style classpath with javac ANT compile task

Does anybody have an example of using JDK 6 style - only defining the directory and not list of each and every jar in the directory - classpath with an ANT javac compile task? We tried it like this ...
0
votes
1answer
383 views

ant - how to include .java files in classpath

Please notice first: I don't need to include .jar files! I want to include .java files from another java project with ant. But I don't know how and google has also no idea. My build.xml looks like ...
0
votes
0answers
508 views

Setting ant.jar / ANT_HOME / ANT Classpath - ANT not working

I'm new to ant but previously had it working fine. Something then happened after I ran a build.xml file and I started getting errors even when checking what version of ant was installed. I'm not 100% ...
0
votes
1answer
193 views

How to display system.out (in console) on ant?

I am able to build java program on ant and it has been configured properly. However i'm wondering how would i see System.out.println / System.out.print on console using Ant ? Note: i haven't used ...
0
votes
1answer
529 views

Classpath problems:running ant java task with Maven Antrun plugin

When running ant task from maven ant run plugin I can set maven classpath as an ant property. However when I try to run <ant:java task setting this exact classpath I get the error that the ...
3
votes
2answers
211 views

Set one third-party JAR's classpath to include another one with Ant

How can I set the classpath of one third-party JAR to include a second third-party JAR in Ant? I need this to run the vanilla Using Schematron with ANT example from this site. (I'm 99% sure you don't ...
2
votes
1answer
227 views

Run ant build with local verison of ANT and JUNIT within Weblogic

I have an Ant build.xml script that I'm trying to use. In it, I've added a taskdef to run some junit tests. However, I'm running into the dreaded classpath problems. Because this is a weblogic ...
2
votes
2answers
312 views

Ant: exclude a jar from class path. I want to it to act like it does not exist

This is my first ant project and I just can't seem to wrap my mind around it. I want to effectively delete the jar and then bring it back after I run my unit tests. I think this can be simulated with ...
0
votes
2answers
1k views

antlib and classpathref

I have the following build.xml file: <?xml version="1.0" encoding="UTF-8"?> <project name="Minimal" default="default" basedir="." xmlns:artifact="antlib:org.apache.maven.artifact.ant"> ...
0
votes
1answer
275 views

Ant & Concordion: Classpath issue

I'm new to Ant/Concordion, and my first question on Stack Overflow so hope you'll be gentle. Trying to setup an Ant task to automatically run my Concordion Acceptance Tests and generate a ...
0
votes
2answers
2k views

Add classpath of third party jar in ant build file

I want to use a third party jar file to be used in my ant project. I guess that I should add something in build.xml file. Actually I want to add Jsoup dependency in my build file. I have read ...
0
votes
1answer
214 views

Ant: putting classes on the classpath, but they are not seen

I am trying to set up Ant to run my tests, but my tests fail to compile. The error is that it can't find the classes I am testing, even though I put them on the classpath. I even output the classpath ...
3
votes
1answer
247 views

Classpath, Compile, and Run with Ant?

I'm completely new to Ant and need to add a couple jars to my classpath, compile a couple .java files, and run a junit test, all in Ant. I've been looking at a few online tutorials and manuals, but ...
1
vote
2answers
663 views

Android+Ant external jar library

I'd like to try org.apache.commons.lang.StringUtils in my Android project. I have downloaded commons-lang3-3.1.jar and placed it in my project's libs directory. However importing it fails with the ...
0
votes
1answer
155 views

Guava in ant build file

I am using Guava library from Google, specifically class Sets. I have tried build my program with Ant, but it fails. Error from javac is cannot find symbol [javac] symbol : variable Sets. ...
2
votes
1answer
575 views

Java ant jar task & class path issues

---------Edit----- So I've now come to realize that my errors are stemming from a command line launch rather than launching the jars by clicking on them. Essentially if I run the jars from any folder ...

1 2 3