0
votes
2answers
25 views

Packaging a file into a jar at a specific directory

Pardon me for asking a simple qustion. I am new to ant and I am trying to build a jar file. I have a file jaxb.index inside the package structure com/mycom/mg/adapter I am trying to ...
0
votes
1answer
52 views

How to add thirdparty library in classpath via ant for java jar?

I build my code via ant and later I try to run my main class. java -cp my.jar mypackage.MyClass but I have a similar exception to the following: Exception in thread "main" ...
1
vote
2answers
31 views

How to a jar file include another jar via Ant?

I have 'test.jar' . I want to create 'my.jar' . I want my.jar include test.jar My code: <target name="jar" > <copy file="${conf.dir}/default.xml" todir="${build.classes}" /> <jar ...
0
votes
1answer
45 views

Can we run ant file kept inside jar file?

Is it possible to run an ant file kept inside any jar from another java program ? Ant build.xml file is kept inside masterjar.jar. I am trying it like : pro = Runtime.getRuntime().exec("ant ...
0
votes
2answers
50 views

How to create a jar file with an Ant script to launch the program

I've currently got an eclipse project with two main methods and was wondering if it's possible to create a jar file which runs an Apache Ant script when the jar file is executed. I've provided an Ant ...
1
vote
2answers
35 views

Need an ANT task to include a set of jar files in the final jar's /lib dir

My project folder has a bunch of dependent jars in: /lib/someapi-1.1.1/main.jar /lib/someotherapi-2.2.2/api-2.2.2.jar /lib/... I build a JAR file and my application requires that the dependent jars ...
0
votes
2answers
38 views

How to export my eclipse java project to the remote server as a runnable jar?

Is there a way to export my eclipse java project as a runnable jar to my remote server directly from eclipse. Can this be done using Ant?
1
vote
1answer
26 views

Boilerplate ant/maven config for apache-commons style packaging

The Apache Commons family has a fairly standard packaging schema: 5 jars (classes, source, tests, tests-source and javadoc), an doc directory with HTML contents and a few text files (License, Readme): ...
0
votes
1answer
119 views

Jar : No Class Def Found Error

I am trying to build a project using Ant Build and i have referenced several jars to make it work. Now When i put the jar created by Ant build in some other machine and run it. I am getting the error ...
-1
votes
1answer
151 views

How to run `ant` build-script without setting any environment variable?

I would like to run the ant build-script without installing Java and setting any environment variable like path, JAVA_HOME & ANT_HOME to environment variable. I have copied already installed ...
0
votes
1answer
31 views

reorganize files inside a jar with ant

I am currently deploying an oracle adf project using ojdeploy. Unfortunately the packaging of the jar is not as it should be. So I have images in the paths lookAndFeel.jar/skins/lightsOff/images ...
0
votes
2answers
51 views

Issue with Ant build file

I have a java file with the name test1.java with a simplle hello world message. I have an ANT build script for the creation of the jar file as foll: <?xml version="1.0" ?> <project ...
1
vote
1answer
132 views

Import jar file in ant build file

I'm trying to compile a project that imports a class from a jar but it's not working. Here's my main class: package sample.calendar; import org.jasypt.util.password.*; public class ...
0
votes
1answer
33 views

Java | Library's internal library packaging

I'm working on a library that has it's own library dependencies, that I want to abstract away from. I'm running into problems after exporting my project to a jar that has the structure of: Foo.jar ...
0
votes
0answers
29 views

where is the nested metainf element in Netbeans build file?

Since I'm getting nowhere with doing this through the Netbeans interface, I'll look at going into the ant build details. The manual states: metainf The nested metainf element specifies a ...
0
votes
1answer
57 views

NoClassDefFoundError when using Ant to build and sign APK containing libraries

I'm having an issue while launching an APK that has been built and signed through Ant. My project includes a library. This library is also a My project builds fine, but when I launch it, the app ...
1
vote
0answers
184 views

Trouble with JBOss finding a class: Not installing optional component “X” due to exception: java.lang.ClassNotFoundException

I am trying to deploy an EAR file to my JBoss using Ant. I'm using JBoss 7.1. I already have got some wars working there (using the same deploy process) but this EAR contains data about my framework ...
1
vote
1answer
89 views

Running TestNG test case from ANT giving DomSource cannot be proccesed?

I have an ant task which runs testNG testCase.But while running it is showing error like below one [testng] Error [testng] DOMSource cannot be processed: check that saxon8-dom.jar is on the ...
2
votes
1answer
45 views

Java Webstart (Library) signing

I am a bit concerned about our current build process. It smells of 'the wrong way' and causes our clients a lot of additional downloads. We have a regular Java project that we publish through ...
0
votes
0answers
20 views

Running junits with ant on compiled java files

Is there a way to run junits on jar files. I have only compiled jar files, don't have java files, .
1
vote
0answers
71 views

Android ant not working on windows

I have already gone through few threads on this and doing exactly what is mentioned by looking at the accepted answers. I am using Ant to build my Android project binaries. On the Linux system it ...
0
votes
0answers
22 views

Jars added, but build fails (cant find package)

i added the jfreechart jar and the jcommon jar to my project via eclipse (properies->build path). In my source code it seems to recognize the jars, b/c i dont get any errors while writing code, ...
0
votes
1answer
40 views

what's the easiest way to include code or reference code from another application in a jar file?

I have a command line application which I need to reference from another jar file and what I don't want to do is copy and paste the existing code into the project that contains the source files for ...
0
votes
1answer
427 views

ant run task : [java] java.lang.NoClassDefFoundError: org/apache/log4j/Logger

i try to run my app from ant , the app is using log4j jar i have now this ant task: <property name="main-class"  value="com.controller.core.Controller"/> <target name="dist" ...
0
votes
1answer
58 views

specify an external jar in build.xml to be added to the resulted jar after compiling

I'm trying to modify the build.xml file in order to specify an external jar to be added to the final compiled jar . Here is my build.xml file <project name="cmmdcservice" default="all"> ...
0
votes
2answers
65 views

ant: the generated JAR cannot be executed

I've written/copied a simple ant example and am trying to deploy a Java progamm with it. My build file bsp0201.xml: <?xml version="1.0" encoding="UTF-8" ?> <project name="bsp0201" ...
0
votes
1answer
72 views

Ant build doesn't make jar file

Got my hands on an old script from year 2000. It's all in Java and there is a build file which compiles it all: <?xml version="1.0"?> <project name="chat" default="compile" ...
2
votes
3answers
195 views

Ant Contrib If for optional JAR META-INF

I have a scenario where I'm trying to reuse the same build.xml file across multiple projects. In each case, the finaly target is a dist that JARs everything up. The only difference is that some of the ...
2
votes
1answer
310 views

How to specify multiple source directory for Android library project

I am using ant tool to build android library project, I need to specify multiple source directory . I have tried to specify multiple source directory by adding these lines alternatively in ...
2
votes
2answers
188 views

How to speedup jar signer?

I use ant for sign my jars for web-start deployment. Ant.signjar is very slow when web-start signing. How to speedup signing process ?
0
votes
1answer
120 views

Creating runnable Jar files. (java.lang.NoClassDefFoundError) [duplicate]

Possible Duplicate: Why does Ant say “NoClassDefFound” when my JAR is on the classpath? I currently have 3 java files that I am compiling in Ant. It is using a Java GUI so it depends on 2 ...
1
vote
2answers
94 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
0answers
54 views

executable jar failed to invoke ANT target

I created a Java class named ExecuteUtility.java (using IBM RAD7.5) that will invoke the default target of ant build file named menu.xml. It works when I run the class in IDE - it successfully locate ...
0
votes
2answers
39 views

Ant: how to create <jar> that includes files from <path>?

Given an Ant path element like the following one: <path id="compile.classpath"> <pathelement location="${common.jar}"/> <pathelement location="${servlet.jar}"/> ...
0
votes
2answers
55 views

Why does Netbeans Ant compile with correct jar but builds with old jar?

I have a project "A" that has another project "B" in it's libraries. Netbeans compiles project "A" and says there are no errors but when I go to clean and build project "A" goes to an old version of ...
1
vote
1answer
351 views

How to exclude from zipgroupfileset?

I am using ANT 1.7.1 but I am getting an error that exclude is not supported in zipgroupfileset target. I am trying to do below operation - <zipgroupfileset > <fileset ...
-1
votes
1answer
213 views

Ant including both jar files and .class files in dest jar

I have defined a jar task using ant build.xml. I need to bundle all the dependencies into my jar. I don't understant why ant extracts the jars and includes both .jars and .class files into my jar. It ...
2
votes
1answer
219 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
381 views

Ant build file to generate JAR for selenium test cases and run it

I have a automation testing project in selenium using Junit framework. Right now I am using ant build file to compile the project and run it and generating the reports. The project has testsuits that ...
0
votes
2answers
45 views

Include another project via ant in android

I'm trying to include a no-android project into my android-project via ant. It's a common-project, which can change every time, so I can't create a .jar file and export it to the "libs" folder. Can ...
1
vote
0answers
101 views

Eclipse Ant build Jar from 1 project and move to build path of another project

In my Eclipse workspace I have 3 projects - 2 dynamic web projects using Tomcat and a data access layer project. What I want to do is whenever I clean (Project - Clean...) or build the dynamic web ...
1
vote
1answer
61 views

Exception in build for jar creation

I have created a build.xml for compiling my source files and creating a jar. The jar is created when I run the build, but the jar runs with the following exception [java] Exception in thread "main" ...
0
votes
1answer
62 views

ant create jar with source files [duplicate]

I need to create a jar with all source files attached. So for each *.class file there must be a corresponding *.java file in the same directory. I think this is something trivial, however I have not ...
2
votes
1answer
276 views

ANT Java-Jar task to include native DLL

I have a JAR library that needs a native DLL library to work properly (Scriptom/Jacob). I added the JARs to my classpath in ANT. But I do not know how to add a DLL file so my compiled Java/Groovy ...
0
votes
2answers
173 views

ant java jar without main class

I need to ant java jar that is execute a jar file that has been created without Main-Class attribute. The Documentation of ant Java task says that the jar file must have a Main-Class manifest. Is ...
1
vote
1answer
932 views

Using FileUtils in eclipse

When trying to use FileUtils I get "cannot be resolved" error. Then, how do I install FileUtils library to be able to use it in Eclipse? I see it is an Ant utility, but I am not sure how many jars ...
0
votes
1answer
432 views

How to build jar for Android library project in Intellij Idea without unnecessary content

When I build jar for Android library project in Intellij Idea it puts inside all dependent jar that I use in the project and classes.jar but as I think all that stuff is unnecessary and jar can ...
1
vote
2answers
123 views

Java/wsdl/jar class not found compilation issue

I am a newbie to wsdl/java... please excuse me for any obvious errors. Here is my main program. It basically tries to create an object and the class of the object type is referenced from a jar file ...
0
votes
0answers
461 views

ANT target to generate Manifest Class-Path for WAR to see jars in EAR's /lib directory

I am deploying an EAR with a utility jar, say A.jar located in the EAR's lib folder. My EAR's application.xml is: <application ...> <library-directory>lib</library-directory> ...
0
votes
1answer
189 views

ANT create the jar file giving problems with getResource + encoding

I am creating my build.xml file to build my jar with ant. All is perfect except for the load of external resources as images. All I want to do is understand how create in the right way the jar. ...

1 2 3 4 5 6