Tagged Questions
1
vote
0answers
45 views
Setting up dependency lib for android project
I'm very new to android and also to android.
I wish to do build my project if I do ant release.
I'm getting an error like due to the fact that my dependency lib aren't added to path.
But when I ...
2
votes
1answer
105 views
Ant: Parallel build with external compiler
I need some help on ant. How can I make ant behave similarly to make -j <n>?
Note that I am not building java, but invoking an external compiler for a proprietary language.
While there is the ...
1
vote
3answers
140 views
Ivy Dependency (pull in directory of files)
Extreme edit to question to have it make more sense:
Let's assume that I need to use a local version of httpclient rather than one that I can just pull from an online repo (due to signing reasons). ...
0
votes
1answer
38 views
how to handle the simplest dependent action in ant?
In a Makefile, I would simply specify
.a.b:
do_something_with_a $< --output=$*.b
How do I do exactly that in ant? I haven't seen this in any documentation, and can't get it to work with ant.
...
0
votes
1answer
445 views
Apache Ant + Ivy syntax error
I have just setup my first project using apache ant with ivy as dependency manager. It is working great! But I have one thing I cannot get over. Since I have several dependencies that use slf4j there ...
0
votes
0answers
62 views
WAR with dependecies with dependencies
I have many projects who depends each others.
I have an ant file for each project for build a JAR file (compile and build JAR)
I have another ant file to build a WAR for a WebService project who ...
1
vote
0answers
94 views
ANT build config with dependency on core files
Currently working on a PHP/HTML/JS project that is made up of a 'core' directory and multiple individual 'product' directories.
Dir structure as follows...
Core
JS
PHP
Product1
JS
...
0
votes
4answers
522 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
251 views
Ivy - resolve same dependency twice (with two different versions), to two different files
I have a special situation where I need to package up some jars, and I need BOTH versions of a jar. My ivy definitions looks like this:
<dependency org="blah" name="blahname" rev="1.0.0" ...
2
votes
1answer
220 views
How can work around javac incremental build in the Android Tools not detecting changes that should cause recompilation?
My coworkers and I recently upgraded our Android Tools to r19 and are seeing problems with the new incremental builds system Google introduced. Incremental compilation seems like a hard problem and it ...
2
votes
1answer
471 views
ant 'unless' on a macrodef
I'd like to write a macrodef that depends on the property being set in another macrodef, such as this, which doesn't work... (macrodef doesn't support depends and unless attributes) Anyway to do this?
...
0
votes
1answer
324 views
Ant plugin for Maven based on multiple build scripts: cannot find dependency
I am trying to create a custom ant plugin for Maven, based on multiple build scripts. There is a note in the documentation about it: ...
2
votes
1answer
256 views
How to make a JAR file from a subset of project classes?
I have a Java project that has just about every class and package depending on everything else. I am trying to untangle it. My current idea is to extract core classes, that shouldn't depend on ...
1
vote
1answer
268 views
Apache ivy. JbossAS, dependencies and some basic questions on ivy
I'm totally new in ivy, so don't blame for for rather elementary questions.
I'm working on project that depends on some libraries of jbossAS 4.0.3.
To tell exactly - there are jboss-4.0.3-scheduler, ...
0
votes
3answers
959 views
ant conditional targets and 'recursion'
I'm fairly new to ant, and I've seen uncle Bob's "extract until you drop" episode.
As a result I try to define ant-targets as small as possibly possible, so you can see exactly the essence of the ...
11
votes
5answers
642 views
Why use many sub-projects and dependencies over packages?
I’ve mostly in my career worked in small or mid-sized java projects. I recently saw a huge project comprising of 30 projects in eclipse. I don’t really get concept of creating many small projects and ...
1
vote
1answer
3k views
Ant / Eclipse complains about artifact:dependencies
I need to use XML to JSON lib in my war.
I followed a tutorial explaining that dependencies are required in the project (http://answers.oreilly.com/topic/278-how-to-convert-xml-to-json-in-java/)
...
0
votes
2answers
450 views
testNG taskdef definition in Ant using Maven dependencies
I am trying to use Ant and Maven to build a project. I am using testNG for test units. As stated here ( http://testng.org/doc/ant.html ) I have defined the taskdef as follow:
<taskdef ...
1
vote
3answers
1k views
testNG Maven problem
I am trying to run a build file using Ant. I am using Maven for dependencies. I am having a testNG dependency in my project.
This is the pom.xml file
<?xml version="1.0" encoding="utf-8"?>
...
1
vote
1answer
561 views
Running project java class from ant using maven for dependencies
I am trying to run a Java class as part of the deployment of my project (I want to create some resources at deployment, which can then be read at runtime).
For the most part, I am using maven for the ...
3
votes
2answers
563 views
Get maven runtime dependencies in ant
I want to get the set of runtime dependencies from maven in ant. I'm using the maven ant tasks.
I know that you can limit the dependencies by scope (see docs):
<artifact:dependencies ...
1
vote
1answer
236 views
How can I build Maven dependencies from Ant Java classpath?
Using Maven Ant Tasks, I see lots of examples that build Ant classpath from Maven dependencies, but what about the other way round?
I have a carefully tuned Ant project that builds the Java task ...
2
votes
1answer
420 views
Ivy: Forcing local snapshot for dependency
I have a Project A which depends on Project B; both are internal projects in active development.
Say the latest Project A release is 1.1.2 which depends on Project B 1.1.1.
Now we are developing ...
0
votes
1answer
402 views
Split Java project by build.xml dependencies
I am working with a Java project that really should have been coded as 2 separate projects. Thus, I'm trying to find a good way to split out the code of each sub-project into its own new project. ...
1
vote
1answer
155 views
Building along with Project Dependencies in Ant
I have a Java project that is dependent on other Java projects that are siblings and there is a chain of dependencies. Each individual project has a build script written in Ant. For clarity find below ...
5
votes
4answers
7k views
Build eclipse project with ant
I am developing JSR 268 compliant portlet and utility with eclipse.
Now, the utility is designed to be a separate JAR from the portlet itself.
Does anyone now how to write an ant build.xml that will
...
3
votes
3answers
2k views
How do you make javac recompile source files when their dependencies change?
I seem to be getting run-time errors in my project when using javac for incremental builds. Is this type of workflow supported? For example, if A.java depends on B.java, and B.java is modified; will ...
1
vote
2answers
991 views
In an Ant build script, how do you check for the existence of a file or directory as a dependency for a task?
Getting started on writing my first build script. I dont get the whole dependency thing. This kind of make sense when your compiling say java and you need the object files to create a jar. But what ...
6
votes
1answer
2k views
Ant: using Filelist as Fileset in Uptodate?
a target of build.xml creates a Zip file. To avoid creating the Zip if no file has been updated, I'd like to check for updates beforehand. AFAIK, "uptodate" is the task to use.
Here is the relevant ...
4
votes
3answers
705 views
Why does CDT rebuild my C-project on Ant build in unrelated project?
I have an Eclipse workspace where a CDT project lives together with other unrelated projects. However, when I run "build as Ant build" in one of those projects, CDT insists on rebuilding its projects ...
1
vote
2answers
494 views
Ant Ivy dependency resolution
I have the following dependency:
<dependency org="foo" name="bar" rev="1.0" conf="war-runtime->runtime" />
However, the jar I want this to resolve to is called foo_bar-g.jar.
At the ...
2
votes
1answer
1k views
Ivy custom url resolver
I am trying to create custom resolver in my ivysettings.xml file:
<ivysettings>
<settings defaultResolver="default"/>
<resolvers>
<chain name="default">
...
0
votes
1answer
605 views
How to exclude a particular package form a dependancy?
When specifing a dependancies using ant ivy, is there a way to exclude a particular package?
eg: I am putting a dependency to MyJar.jar
it has packages
com.test.one
com.test.one.first
...
0
votes
1answer
514 views
Ant calling child project parent project ivy.xml overriding child project ivy.xml
We've got a parent project and a child project java builds using ant and ivy. The child project needs to be able to build independently.
When the parent project calls the child project the antfile ...
1
vote
1answer
461 views
project dependency tree by using ant
I am trying to compile a j2ee project, and the solution file includes many source projects, libraries. some of source projects have dependency with other source projects. And this compile task will be ...
5
votes
1answer
3k views
How to assemble a multi-project ant build system
At my new gig, they use Ant and cannot be persuaded to move to Maven.
I've looked everywhere for a decent example of how a multi-project ant build system should be assembled. The apache site falls ...
0
votes
1answer
464 views
Ant: project dependencies in a flat project layout with ivy
I have two (Eclipse-) projects. Project A depends on project B, but the projects aren't nested i.e. project A is not a subproject of project B. Apache Ivy is responsible for the dependency management. ...
4
votes
1answer
4k views
How to create an Ivy dependency for local jars inside your project/lib?
I have a couple of jar files, (some of which depend on each other), and I'm trying to have ivy manage them for my project.
I do not want to create a "local" (user dir based) repository, because I ...
1
vote
5answers
343 views
How can I generate list of classes in order of dependency?
I'm doing a build script for a Java application to run inside the Oracle JVM. In order to import the 50-odd classes, it appears I need to bring them in in order, so any dependencies are present before ...
3
votes
1answer
1k views
Avoiding re-building prerequisites in Ant
I have an existing Ant project and would like to speed up the build process
by avoiding re-building components that are already up to date.
Ant permits you to specify that one target depends on ...
4
votes
6answers
8k views
Maven Antrun and Dependencies
(See edits below.)
The reason I can't just use the classpath, is because I need to manage some non-java libraries, and I'm compiling a non-java project.
I'm trying to use maven dependencies in an ...
0
votes
1answer
531 views
per-file dependencies in ant
I have a set of input files, each of which is processed to generate an output file. In one case it's hibernate xml files as input, and java files as output, but that isn't the only case I have to ...
0
votes
1answer
2k views
Simple Apache Ant Question: Including library dependencies
I can't quite figure out how to add all of my .jar dependencies to my client jar.
This is what I have so far:
<target name="create-metrics-client" depends="clean,build">
<jar ...
1
vote
4answers
593 views
Java builder with proper dependency handling
After a recent juggling with our ant scripts I've started to wonder if something better is possible.
I need a builder that will know to recompile all required .java files for me.
For ex. for this ...
3
votes
2answers
822 views
Apache Ivy: resolving dependencies embedded in an installer
I have a problem with a build where I have to resolve non-standard artifacts through Apache Ivy.
Problem:
I have dependencies on two artifacts (a.jar and a-lib.jar).
The two dependencies come only ...
0
votes
3answers
220 views
Problem with dependencies using Ant from the shell
I'm having problems building my project, using an Ant script, from the command prompt using Ant itself. It can't find a certain import for a particular Java file in my project (which has nearly 5,000 ...
1
vote
2answers
430 views
What's the best way to define dependencies between multiple ant build files?
I have a bunch of modules which I'd like to all have their own ant build files. However, modules have dependencies on other modules. What's the best way to define dependencies between build files?
...
10
votes
3answers
6k views
How to execute an Ant task only when source files have been modified?
There must be an easy way to do this. I build a Flex app using ant that depends on a SWC library, which works fine except that it rebuilds the library whether it needs to or not. How do I tell ant ...
10
votes
4answers
10k views
Ivy: how do I remove transitive dependencies?
I'm using Ivy to manage the dependencies on my project.
So far, I've specified a dependency on Hibernate and servlet-api. However, the hibernate jar itself has a lot of dependencies that aren't ...
33
votes
8answers
13k views
Maven or Ivy for Managing Dependencies from Ant?
I was wondering about the best way to manage projects dependencies from ant. What are the pros and cons of the Maven Ant task and of Ivy?
