Tagged Questions
0
votes
1answer
117 views
ClassNotFoundException with Junit when using Class.forName(..).getInstance while new() works fine
I am getting ClassNotFoundException when running tests with junit:
I have a bunch of testcases that tests Class Main. The Main class has a method that takes in a string representing a datatype and ...
0
votes
0answers
79 views
Ant with JUnit task - java.lang.ClassNotFoundException
I've been testing solutions discussed here, but I've not found anything that solved my problem.
I generated all .jar files that JUnit needs in its classpath
My classpath seems to have all the ...
0
votes
1answer
188 views
Ant script giving class not found exception - why?
<project name="MyProject" default="run" basedir=".">
<description>
simple example build file
</description>
<!-- set global properties for this build -->
...
0
votes
4answers
506 views
Java ANT : Issues with build.xml
I was wondering if someone could help me with a serious issue...
I need to create a jar from a project using a lot of dependencies...
Problem is : my build.xml file I wrote with my own hand is not ...
0
votes
1answer
160 views
Junit classpath in ant: problems with dirset
I'm getting troubles trying to use
<dirsets>
in my junit ant.
This is the snippet of the classpath.
<target name="myTests" >
<junit haltonerror="true" haltonfailure="true" ...
1
vote
4answers
2k views
ClassNotFoundException: Main Class in JAR file via ANT build
Basically I'm attempting to run a JAR file which I've created using an ANT buildfile. The program needs to use an external jar in order to compile correctly. I've included it in the class-path of the ...
2
votes
3answers
1k views
Finding jdbc driver class problem with liquibase, ant
Here is an example of my ant xml file:
<!--A reference to the classpath that contains the database driver, liquibase.jar, and the changelog.xml file-->
<path id="liquibase.classpath.id">
...
3
votes
1answer
1k views
Junit test integrated with Ant Failed with ClassNotFoundException
I have JUnit tests on my project that run correctly with Eclipse.
So, now I try to integrate these tests with an ant task. To make that I make the following ant script :
<path ...
2
votes
1answer
257 views
Java application executing other Java application using Ant on Mac OS X
I´m working on a client-server Java-application that is meant to work on Mac OS X as well as Windows and Linux. The application has several different client modules which should be executed from a ...
0
votes
1answer
264 views
How can I set NetBeans to use my own ant installation?
I did that successfully for Maven through NetBeans preferences setting Maven home to /opt/local/share/java/maven3 but doing the same with Ant (/opt/local/share/java/apache-ant) but there NetBeans ...
8
votes
1answer
14k views
Ant: Exception in thread “main” java.lang.NoClassDefFoundError: org/apache/tools/ant/launch/Launcher
I've installed ubuntu 10.10 in my system and installed ant with the following command:
sudo apt-get install ant
Now, ant is visible in the share folder, so I've tried to run the ant command in ...