0
votes
0answers
14 views

Deployment of a web project to Glassfish via ANT in Java for all platforms

I have a web project that deploys war files, and right now I can deploy to Glassfish in Windows. Here is my build.xml's necessary part. <target name="deploywar" description="Varolan WAR ...
0
votes
0answers
18 views

testng folder paths are messed up when ran from an ant

I'm trying to run a test to check if a folder is empty. This is pretty easy, but the problem is that I run it locally and on a server. Locally I run the test and is green, but on the server its ran ...
0
votes
2answers
23 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 ...
-4
votes
0answers
21 views

Ant deployment issue - Deleting new files while creating WAR file using ant build

Deleting the new files while creating WAR using Ant build.xml file. Could you please advise.
0
votes
1answer
21 views

Why does Ant recognize some env vars but not others

I have 2 env vars defined: myuser@mymachine:~$ echo $ANT_HOME /home/myuser/apache/ant/1.8.4/apache-ant-1.8.4 myuser@mymachine:~$ echo $ANT_IVY_HOME /home/myuser/apache/ivy/apache-ivy-2.3.0-rc2 I ...
0
votes
1answer
46 views

How to add new file in .war file using ant build file? [closed]

I have checked in source code from clearcase and linked with eclipse. When i'm adding new file or image and doing ant build, these new files are not adding into .war file. Can you please advise me.
-1
votes
1answer
28 views

Cannot find package org.junit when compiling java file in command prompt

Whenever I run my java file in command prompt, I keep getting errors saying: error: package org.junit does not exist import static org.junit.Assert.*; This also gives errors on symbols like ...
0
votes
1answer
24 views

“No information about coverage per test.” from Sonar with Jacoco Ant build

I'm using Ant, Jacoco and Sonar. When I run my build Sonar tells me that "No information about coverage per test." and the Sonar dashboard has my coverage results, but I cannot drill down into them to ...
0
votes
0answers
13 views

Ant Build Script for Dynamic Web Project with Deployment Assembly to other project

I have a Dynamic Web Project (in this case it is a Web Services). This project have a lot of customer libraries (Spring, Hibernate, etc). Also, It have a second project with the "core code" linked ...
-1
votes
0answers
23 views

What ant command should I use when changing a spring message properties file

We have messages.properties file which contains labels . Something like label.industry=Industry label.representative=Representative label.sector=Sector label.issuerSize=Issuer Size From a jsp page ...
0
votes
1answer
34 views

java.io.IOException: Cannot run program “ant”

I'm running a Job in Hudson. I build this job from a Hudson Master Server but the job is built in a Hudson Linux Node. This is the result: Started by user builder Building remotely on Linux-Node ...
0
votes
1answer
25 views

Build netbeans project from command line is a little different

I would like to build my project from the command line and make a hash of the output. I used this script which seemed to work: set JAVA_HOME=C:\Program Files\Java\jdk1.7.0_09 set PATH=C:\Program ...
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
2answers
61 views

Where does Ant set its 'java.home' (and is it wrong) and is it supposed to append '/jre'?

Okay, I'm using Ant version 1.7.1 (default install) on CentOS 6.3: [theuser@dev-ingyhere ~]$ ant -version Apache Ant version 1.7.1 compiled on August 24 2010 [theuser@dev-ingyhere ~]$ cat ...
0
votes
1answer
24 views

Use of JDT compiler in ant build file [closed]

I would like to use Eclipse's incremental compiler from the command line. The problem is that although the classpath is set, I get the following error: Class not found: ...
0
votes
1answer
21 views

Working with Ant and e(fx)clipse

I am having some trouble understanding the first tutorial from the e(fx)clipse website. I am stuck on step number 11: Click on the "ant build.xml and run" link in the build section of the editor. ...
0
votes
1answer
132 views

Hadoop Eclipse Plugin Build Error

I've installed Hadoop 1.1.2, and I followed the steps to build the eclipse-plugin described in http://surajit-paul.blogspot.com/p/eclipse-configuration-for-hadoop-112.html But when I want to build ...
1
vote
1answer
34 views

Java/Ant - Compile multiple variations

I currently have a Java project in Netbeans 7.3, which contains a settings.java class. Within that class are 3 booleans that turn on/off various features of the program (eg: trial, full, etc). ...
1
vote
1answer
54 views

Bamboo Ant Task fails when running junit task

In my current project I'm using junit tests. Runing my ant file on my local pc produces my Test Report as expected, but when bamboo tries to run my tests, it produces the following output. Whats my ...
0
votes
1answer
32 views

ANT build fails and gives classNotFoundExceeption in html report

After doing so many trial and errors on "How ANT tag works ?", I decided to write my own custom build xml file for the testcases that was written in Java and integrated with JUnit. Unfortunately my ...
0
votes
0answers
16 views

junit ant task - FailureRecorder class not found

Basically i tried to adapt the example from http://ant.apache.org/manual/Tasks/junit.html (last one on the page) to my needs. I defined an ant task which runs all my junit tests but on rerun only the ...
0
votes
0answers
32 views

Ant JUnit task NoClassDefFoundError when run in existing JVM

I went for the JUnit Ant task solution where I provide the JUnit library through the task's element: <target name="test" depends="compile-tests" description="Run unit tests"> <junit ...
1
vote
3answers
50 views

How to build a jar with different java version with ANT

I tried to build a jar file using java 1.5. I use eclise and I specified the java version as 1.5 in below areas. Project -> Properties -> Java Compiler Project -> Java Build Path -> JRE System ...
0
votes
1answer
61 views

Tool to compare HTML files and produce report in HTML or XML format

I want to provide a diff report for a non regression test. Regression test is to compare HTML files and generate report about which files are same and which are not same. I found one tool called ...
0
votes
1answer
38 views

HTML Validation in PHP File

I am working on some Apache Ant Project in which i am using .jar to validate html. The ant script takes the *.html files and validate it and display if errors are found. The .jar is not working for ...
0
votes
0answers
24 views

eclipse create java project from multiple build files

I read this question (importing ant build.xml in eclipse) but over there we can add just one build file. In my case, the project has a main build.xml and several plugins (which have their own build ...
0
votes
1answer
23 views

Not able to create javadoc using ANT

I am trying to build my project using ANT. While creating javadocs, I am getting one error as shown below : If error is not clearly visible in below image refer this : [javadoc] javadoc: error - ...
2
votes
1answer
25 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
40 views

How to run java task for each file in directory?

How to run java task for each file in directory with Apache Ant? Looks like <apply> only allows to run executable.
0
votes
1answer
53 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
32 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
44 views

PhoneGap CreateProcess build errors. C:\Program not found

I've been building PhoneGap apps for BlackBerry for about a year now. Suddenly, the build process is hitting errors like this: build: [exec] [INFO] Parsing command line ...
1
vote
2answers
30 views

Merging 2 jars into one avoiding duplicate classes

I have two netbeans project and i need to merge the 2 output jars in only one "big" jar. The problem is that these 2 project share a lot of classes and this is obviously a problem. I'm already using ...
0
votes
1answer
49 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
1answer
36 views

How to make system search for .keystore file in project directory, by default it checks for .keystore file in C:\Users?

I am using ANT to build a war file for my project which uses applets. I have created a keystore file in the project directory, but on build up system checks for the .keystore file in C:\Users, how can ...
0
votes
1answer
45 views

Ant resource exists check

I have problem testing file existence with ant. I want to check if files exist in target test, and if not, I want download files in target download. But the download target will be executed always (if ...
0
votes
1answer
33 views

Include java project into android build

I've got such a problem I have to include external java project into my android build. The project structure is: Alpha - project with shared classes and libs. Beta - android project that uses ...
0
votes
2answers
52 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 ...
0
votes
1answer
18 views

Running ant target and getting antlib not found error

I am running ant and having an issue with it picking up the jar file I need. [kyle@infosys salesforce-git]$ jar tf /usr/share/ant/lib/ant-salesforce.jar | grep antlib com/salesforce/antlib.xml ...
0
votes
0answers
16 views

How to make javadoc available outside the doc-folder?

So I'm quite new at this. I've created a small Android app (which is working fine) for a school project, and I'm required to hand in the documentation. I'm using Ant to generate the javadoc which ...
0
votes
0answers
57 views

How to launch JavaFX application on command prompt?

I have created a self-contained application using JavaFX deployment task i.e. <fx:deploy>. I run this application from command prompt and passes arguments. It supposed to run on command prompt ...
10
votes
2answers
84 views

What does “**” mean in ANT? [duplicate]

Often in ANT tasks, you will see "**" used similar to below: <copy todir="/something"> <fileset dir="/source"> <exclude name="**/*.sql"/> </fileset> </copy> ...
1
vote
2answers
36 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
1answer
37 views

NotImplementedException is internal proprietary API

I became the following warning when i try to build my project with ant. My build.xml ist a auto-generated from eclipse: warning: NotImplementedException is internal proprietary API and may be removed ...
0
votes
1answer
26 views

ANT to launch Java App with JNI library

I have the following ant target to run my Java application with JNI call. I was able to run the application via my run.sh file (in Linux). I always get java.lang.UnsatisfiedLinkError on ant. My ...
0
votes
1answer
29 views

Unable to create folder “classes” in WEB_INF folder in eclipse while building using ANT

I am using ANT to build a simple web application project named "HelloWebApp" in eclipse. But while using ANT to build the build.xml file I am getting the following error. Buildfile: ...
0
votes
0answers
17 views

Less Rhino is not working with multiple files

I am using less-rhino-1.3.3.js as tool for validate LESS files via apache ant. Following is my build.xml code block. <apply dir="${dir.publish.LESS}" executable="java" parallel="true" ...
0
votes
2answers
34 views

Java Problems when Running Ant: noclassdef

Windows 7, Java jdk1.6.0_32, Ant 1.9 User & System variables: JAVA_HOME:C:\Program Files\Java\jdk1.6.0_32 PATH:C:\Program Files\Java\jdk1.6.0_32;c:\ant\bin; ANT_HOME:c:\ANT Run command prompt ...
0
votes
1answer
33 views

Ant target 1.6 package not found

I am trying to down-compile a project for compatibility with Java 1.6 using Ant and I am receiving the error package javax.net.ssl does not exist. <path id="master-classpath"> <fileset ...
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 ...

1 2 3 4 5 51