0
votes
2answers
21 views

How should I manage post-build tasks?

I have a java application. I can run the Maven Release task which will do some nice things for me: Change Version number from 1.0.0-SNAPSHOT to 1.0.0 Increment the version number in my pom to ...
2
votes
1answer
62 views

How to use YUI Compressor in Ant build script for javascript

I have ANT script which compresses .js files into their own files, but i want to compress all .js files into one .js file. How to make it work using below ANT script. <echo message="Compressing ...
0
votes
1answer
40 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 - ...
0
votes
1answer
72 views

Ant Build: Extract class files from a Ivy dependency war file in the class folder

I have a project with a dependency to some other Java classes from another project. In eclipse the two projects are running without any errors. Now I want to build the project with the dependency ...
-1
votes
1answer
290 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 ...
1
vote
1answer
181 views

Android with Maven and IntelliJ

For the past 3 weeks I've played heavily with Android Maven build process. For the most part I find it a much better experience than Eclipse but have a few questions I'd like answered: Is there a ...
0
votes
1answer
126 views

Build multiple environments with a single target and single command(Anding -D and property file)

I have to create a single command to create multiple(dev|qa|uat) war/ear. Something like : ant -f build.xml -Denv=dev|qa|uat -propertyfile= devProp|qaProp|uatProp -Dstage.dir=devdir|qadir|uatdir ...
3
votes
2answers
44 views

When should you mess with Ant Buildfiles?

On large team projects, I've needed to manually edit the Ant Buildfile. On small programs I've written from scratch, I haven't needed to make or edit any sort of helper files for the build (e.g. never ...
3
votes
1answer
87 views

Check for life-cycle/phase and file existence in Maven and report error

I want to check in Maven if authentication data from property file is provided by developer during application testing if call integration-test life-cycle. As state common practice it is bad to ...
1
vote
2answers
64 views

How to print the build target in Java?

Say we have a class PrintTarget with main() inside of it. Can we build/compile such that , somehow we should be able to send the build-target-name inside of the main. and when the main() is called ...
1
vote
2answers
256 views

Continue where ANT stopped after build error

I have an ant build script that builds many android projects. I am building all the projects in a specific order given to me by a property in a text file. The ant build script calls each project's ...
4
votes
2answers
244 views

ant regex for android package names

in my android project all of my .java view files import the R file based on the name of the current package. When I change the name of my package name in the Android Manifest (dynamically, not ...
1
vote
1answer
256 views

Including SVN head revision number in the manifest.mf

I am creating a WAR file using Ant. When WAR is created it has MANIFEST.MF file with the default content : Manifest-Version: 1.0 Ant-Version: Apache Ant 1.8.4 Created-By: 1.7.0_07-b10 (Oracle ...
0
votes
1answer
239 views

Maven 3 antrun issue

Recentely we upgraded from maven2 to maven 3 but ant build are not working. Ant is not compiling my project in maven 3 but am able to compile the same project using maven 2. For just a simple example ...
0
votes
0answers
1k views

Sample Struts-2 application deployment

I am getting Deployment error for deploying it in J-Boss 4.2, I am using Eclipse, integrated JBOSS 4.2, have added, I have added build.properties, and build.xml (ANT BUILD) for my application, I ...
1
vote
2answers
422 views

How to split tasks between CI Tool (like Jenkins) and a build script (Ant or Maven)? [closed]

Our team has some controversy on which tasks should be handled by CI tool and which should be in a build script (we use Ant for building and FinalBuilder for CI). My thought is that all the tasks ...
3
votes
1answer
702 views

Apache Ant: turn off output for a specific task

I have a build file that has different variety of tasks. Some of these are in-house tasks that I am able to control the amount of logging/output generated. The other tasks are libraries that I have ...
3
votes
1answer
180 views

Do Build scripts wait for Command line tasks to complete before proceeding?

Sorry if this question seems vague, I am actually asking about the Phing build script in PHP which is built off of the Ant build script for Java but I assumed that other build scripts for other ...
2
votes
2answers
369 views

How do I copy a directory in Ant without deleting existing files in the destination directory?

I have the following file structure: FolderToBeCopied folder1 somefile1 somefile2 I am copying FolderToBeCopied to a location which already contains files: DestinationFolder folder1 ...
29
votes
4answers
5k views

No key.store and key.alias properties found in build.properties

I am using ant-release to do a 1-step build of my Android app. My build.properties looks like this: application.package=xxxxx key.store=sonr key.alias=sonr labs key.store.password=xxxx ...
1
vote
1answer
436 views

automatically disable “build automatically” in eclipse during ant run

Is there a way to automatically disable the "build automatically" setting in eclipse while an ant build is running? It should listen for an ant task being started check if the setting is enabled ...
2
votes
1answer
323 views

Android ant debug fails with android library (Absolut path)

I have a fresh android project (APP) and a fresh android lib project (LIB) under MacOS or Linux, created by command line as explained in ...
0
votes
1answer
190 views

Naming a file in Apache Ant based on contents of different file

I've got foo.js, and an ant build process that results in foo.min.js. foo.js has a header comment that includes: * $Id: foo.js 12345 2011-10-04 14:35:23Z itoltz $ Where 12345 is the revision of ...
2
votes
1answer
778 views

Copy Ant path to WAR's lib directory

I think this is probably a common use case. I define a set of paths: <path id="log4j.classpath"> <fileset dir="${log4j.home}"> <include name="log4j-1.2.16.jar"/> ...
0
votes
1answer
2k views

How should I approach this “ant deploy” error(“unable to add listener…”)?

Here's my error, in picture format in case it's easier to read: http://i.imgur.com/k5GUB.png I appreciate any tips or advice. Here's the text of the error(by the way, ignore the first 4 comments ...
1
vote
0answers
1k views

jenkins: error during ant build - java.exe not recognized

I've just started setting up a build server, using Jenkins. Right now i have an extremely vanilla setup. Just trying to get it to run the default target of a specific build file. However whenever i ...
1
vote
2answers
610 views

How to force code style formatting as part of the build?

Is there a way (using ANT), it is possible to automatically reformat code to follow certain conventions? I have several developers working on a program and would like to guarantee that code ...
3
votes
1answer
484 views

“phing.types.Path doesn't support nested text data” - what does it mean?

I have the following Phing configuration file: <?xml version="1.0" encoding="UTF-8"?> <project name="ru.fractalizer.phpsweetpdo" default="make-phar-packages" basedir=".."> <target ...
0
votes
2answers
183 views

Port javadoc to ant task: How implement “[@files]” option?

I'm trying to add javadoc to my ant build process do not really have an idea how to "convert" one option of javadoc into the ant task "< javadoc >". Here the javadoc usage: usage: javadoc ...
0
votes
1answer
130 views

How to make subsequent PDE product builds not rebuild dependent plugins

Our build process constructs several products out of a relatively small set of plugins. To trigger the build, we have an Ant file that just iterates through the names of the products, like so: ...
0
votes
1answer
264 views

encoding issue with special chars in properties file

I have a ant build script that uses a build.properties file. There I have something like this: release_type=debug version_code=1 version_name=1.0.0 logo_text=This is German: special chars like ä or ö ...
3
votes
1answer
339 views

Why does my ANTLR build Ant task fail with “Unable to determine generated class”?

I'm trying to use ANTLR3 task for Ant, but I get an "Unable to determine generated class" build failure message. A quick research shows that many people have had the same problem, with no solution ...
3
votes
2answers
826 views

Exclude test class directory for archiving in Ant

I have created a java library project. The binaries are available at <project-dir>/bin. The test classes are available at <project-dir>/bin/com/myproject/test. I need to exclude archiving ...
3
votes
2answers
439 views

How should I maintain JDK7 projects, so that they automatically could be downgraded for JDK6?

I have few own APIs with around 2000 classes overall. Some of them use the new Path API from JDK7. Most other classes, however, do not rely on any new JDK APIs or new language features. So most ...
2
votes
4answers
863 views

Ant warning/failure when file / build.properties is missing?

My teams ant task pulls in developer specific info from a build.properties file by using the property file tag: <property file="${user.home}/build.properties.txt" /> However, when this file ...
1
vote
1answer
923 views

Ant target to remove old build directories

I have my builds published to the directories like: /some/dir/build-1/ /some/dir/build-2/ /some/dir/build-3/ ... /some/dir/build-n/ I need ant task to delete all the previous build directories ...
5
votes
5answers
931 views

Best practice for code modification during ant build

Admitted, this doesn't sound like a best practice altogether, but let me explain. During the build, we need to paste the build number and the system version into a class whose sole purpose is to ...
15
votes
5answers
6k views

ant depends vs. antcall

When defining sequential build steps I use the depends attribute of the target element. I have recently seen an ant file, where the build sequence was defined by antcall elements inside the targets. ...
1
vote
0answers
1k views

How to setup xampp, phpunit, ant, zend framework

First post here, so take it easy please. I'm working through the first chapter of Zend Framework 1.8 Web Application Development by Keith Pope in an effort to learn PHP and the MVC framework. I ...
1
vote
2answers
326 views

Reuse and execution control in Ant

I think I must not "get" Ant. I am having a hard time figuring out how to implement reuse and control execution of a sequence of targets. Please help. I need my build script to create two builds: a ...
2
votes
2answers
675 views

How to speed up build process in Eclipse with Ant?

So I've come to a point when I need to speed up the build process of my projects cause the way I'm doing it now is not very logical I think. I've a /lib folder within each project's folder with ...
1
vote
2answers
1k views

Ant build denied permission to copy .war file

I have a packaged app.war file that I am trying to copy to the webapps folder and I am getting an error: BUILD FAILED Failed to copy mywar.war to /usr/local/tomcat/webapps/mywar.war due to ...
2
votes
4answers
706 views

Difference of purpose of build and dist directories when doing a deploy

I am creating an ant script and I am wondering what should be the name of the directory where I package up the whole kaboodle and make it a .war file and put it in the webapps directory. Should it be ...
1
vote
1answer
1k views

Echo Ant property to a File

I am having problems echoing a property to a file. I am pretty sure there is some misspelling that i can not spot right now or some concept i am missing. The target is: <target name="war" ...
0
votes
0answers
127 views

Netbeans and the build of a project containing xml files

I'm an Eclipse user, but I'd like to use Netbeans' profiler, so I installed Netbeans 6.9.1 and imported my Eclipse project. The project uses Hibernate, and I have some xml files around the source ...
4
votes
3answers
3k views

Make ant quiet without the -q flag?

I have an ant buildfile that is often run from vastly different environments. By default, I'm looking for the same behavior as using: ant -q However, since some team member's configurations vary, ...
4
votes
3answers
742 views

What are some good ways to distribute a common ant file to be included in builds?

I work in a group where we produce many small apps, and use ANT for our build processes. We would like to have some of our commonly used directives housed in a common way. Currently, we require a ...
0
votes
1answer
660 views

ant large project. How to enforce common output directory structure - include,import and inhertAll=false?

I have a toplevel ant project and many subprojects under it. ./build.xml ./datamodel_src/src/build.xml ./datamodel_src/src/module1/build.xml ./datamodel_src/src/module2/build.xml ...
0
votes
2answers
196 views

Can I use a remote build file in Ant?

I have an ant script created by a previous employee of our company and it contains tasks to check projects out of Subversion. The only problem I have though is that the build file is actually part of ...
3
votes
2answers
1k views

Run all unit tests with Ant builder

I have a directory with a bunch of JUnit tests in my project. So far I have used separate target for each unit test. For example: <target name="MyTest"> <mkdir ...

1 2 3