Tagged Questions
79
votes
6answers
25k views
Why use Gradle instead of Ant or Maven?
What does another build tool targeted at Java really get me?
If you use Gradle over another tool, why?
(See also Why use Buildr instead of Ant or Maven)
27
votes
13answers
2k views
Why is no one using make for Java?
Just about every Java project that I've seen either uses Maven or Ant. They are fine tools and I think just about any project can use them. But what ever happened to make? It's used for a variety ...
22
votes
9answers
6k views
SASS implementation for Java?
I'm looking for SASS implementation in Java (could be used with JSP/JSF). For Python I've found CleverCSS, but there is nothing for Java. Anyone heard something about this sort of tool for generating ...
16
votes
3answers
4k views
ant to maven - multiple build targets
I have an ant build that is currently being converted to maven. However, the ant build has 2 build targets - one that builds the entire app, and one that builds a jar from some of those files (only a ...
7
votes
4answers
584 views
Maven vs Ant for automatic builds in Android applications
I'm evaluating whether to use Ant or Maven to automate my build process for Android development. I've been trying to read online to make an informed decision, but haven't found many specifics that ...
7
votes
2answers
2k views
JAVA_HOME gets mangled by Maven
I'm retrofitting bunch of existing Java projects with unified Maven build. Since each project is mature and has established Ant based build all I'm using maven-antrun-plugin to execute existing ...
5
votes
1answer
58 views
How do remote dependency managers for tools like grapes/maven/ivy manage to utilize the same underlying repositories …?
It seems as though ivy , maven, grapes , and other dependency managers link to the same integrated repositories.
1) What do these different dependency managers have in common in terms of the way ...
4
votes
2answers
230 views
Are there any robust Clojure continuous integration options?
I'm trying to integrate clojure into a continous build . Any suggestions for A clojure enabled system like Jenkins , that is capable of doing lthe work for me via a plugin? I've seen some ad hoc ...
4
votes
1answer
225 views
Advice migrating jboss AS5 project to AS7
We have a large project ear that contains a .har and a .war, currently built with ant - running on JBoss AS 5. We would like to migrate this application to JBoss AS 7. Much of the AS 7 documentation ...
4
votes
3answers
614 views
Use Maven just to fetch some library jars
We are using ANT for our build process and don't have plans to change this in the near future.
Is it possible to use Maven to just fetch common Open Source jar files (e.g. Log4J, SWT, JFace) and put ...
3
votes
2answers
55 views
Ant immutable properties to mutable
i have a problem. I'm use antrun plugin for maven and do next: i have folder and subfolders(I do not know what are called sub-folders and their number) and i'm do archive for this subfolders with ...
3
votes
1answer
42 views
Does one have to install Ant for running Maven's maven-antrun-plugin?
From the docs: "This plugin provides the ability to run Ant tasks from within Maven 2."
Do I need to install Ant to run ant tasks or does the maven plugin already includes Ant? Thanks.
3
votes
1answer
69 views
Maven: how to identify jar files by SHA
I've inherited an Ant-based project that has over 80MB of jar files in a lib dir. I'd like to convert it to Maven. The jar files are named very simply, like quartz.jar. Since there is no indication of ...
3
votes
4answers
218 views
Help setting up a Java build environment
I'm at my wit's end. I'm spending more time working on getting my build to work rather than actually developing software. I'm currently working on large-scale Java web application based on Tomcat 6. ...
3
votes
3answers
576 views
How to automate android builds for lite and premium version?
I'm looking for a solutions which will allow me to build lite and premium versions of my android app without manual manipulations.
The functionality I'm looking for is:
Automatically renaming ...
3
votes
2answers
73 views
Is it possible to manage a project by both Ant and Maven?
Can those two coexist for the same project?
3
votes
3answers
127 views
Versions in Java
I have to manage a Java build, and I don't know how to best manage the software's version so that it can be displayed on an about dialog etc.
How do you people do it? We are using Maven, can I ...
3
votes
1answer
246 views
speed up java maven compile on amazon clustering
just a wild idea. wonder is it possible to compile maven build on amazon clustering machines to speed up build processes? any reference or guide on this?
reference
2
votes
3answers
52 views
JSON-based build tool?
I'm looking for a build tool (such as ant, maven, make, etc.) that uses JSON-based configuration files?
Does such a tool exist?
2
votes
2answers
36 views
Mavenizing ANT project
What's a proper way of mavenizing an Ant project? the project has an Ant build.xml file with 3 targets.
I've found out how to configure the pom.xml to run Ant tasks, but what worries me is this: ...
2
votes
2answers
36 views
Assistance with good starting references for tools like Maven, ANT Build, etc
Ok Spare me for this post. I am a newbie like the guy here: Importance of tools like Ant Maven
But i want to really start learning specially ant scripts and maven. I went on their respective project ...
2
votes
1answer
31 views
Look for hierarchy standard for Java projects
I am searching for hierarchy standard for Java projects and only
found this link:
http://java.sun.com/blueprints/code/projectconventions.html
I think that Ant, Maven, Gradle like SE, ME, EE must ...
2
votes
1answer
50 views
How am I supposed to know what configurations are available in an Ivy dependency?
How am I to know which configurations are available for a particular dependency?
I understand these are common configurations: ...
2
votes
4answers
87 views
Maven Version number in java file
I come from ANT where you can invoke a .java file to obtain the version number through executing some method. I would like to do something similar in my new pom.xml to automatically obtain the correct ...
2
votes
1answer
156 views
mvn install looks for tools.jar nested too deep within my java directory
On ubuntu 11.10, with maven2, here's the error code:
Unable to locate the Javac Compiler in:
/usr/lib/jvm/java-6-sun-1.6.0.26/../lib/tools.jar
Not sure why it's adding the ".." in the path?
My ...
2
votes
2answers
577 views
Ant installation cannot find maven-artifact-ant-2.0.4-dep.jar
I'm trying to install Ant on Windows 7 using these instructions, but at stage 5, when I run the command ant -f fetch.xml -Ddest=system, I get the following error:
Buildfile: C:\Program ...
2
votes
2answers
118 views
How to pass parameter values to maven gzip ant task?
Gzip can take parameters, as described here. I would like to gzip some files from maven using ant-run, but the documentation does not explain how to pass parameters.
Is this possible, and if yes, how ...
2
votes
1answer
97 views
Is it possible for the same javac compiler to compile the same set of source files but produce class files of different checksums?
I was attempting to compare the results of this: (in ant)
<javac
target="1.5"
source="1.5"
...
2
votes
1answer
125 views
Alternatives to Maven Archetypes
We're currently using Ant with Ivy for build and dependency management, but there's an interest in providing template starter projects like Maven provides using archetypes.
...
2
votes
3answers
66 views
How to call for a Maven goal within an Ant script?
Is it possible to call or execute a Maven goal within an Ant script?
Say I have a ant target called 'distribute' and inside that target I need to call for a Maven 'compile' goal from another pom.xml.
...
2
votes
1answer
683 views
Sonar plugin not working for projects that use ANT as a build script
Problem
I have just installed the Sonar Jenkins plugin. I went into my configured job (a free style job) that produces a WAR file artifact through an ANT build and did as follows:
Check the Sonar ...
2
votes
2answers
152 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 ...
2
votes
1answer
223 views
How to convert build.xml to maven pom file?
I have portlet project which runs using build.xml. I want to shift to maven based build management.
How can i map build.xml to pom.xml?
How can i write goal for every target in build.xml?
Whether ...
2
votes
1answer
74 views
Maven tests vs ant tests (more specifically now)
Ok, a little backstory on this one. I'm responsible for translating a project from a (terrible) ant build to a maven build. My first step was to simply remake the final EAR as similar as the Ant one, ...
2
votes
1answer
81 views
Is there an ivy/ant equivalent to mvn jar-with-dependencies?
With maven-assembly-plugin it's possible to package a project into a single jar w all the dependencies.
2
votes
2answers
2k views
gwt 2.3 gwt-servlet-deps.jar from Ant Ivy build
I am trying to get a simple GWT 2.3 project working in DevMode with an Ant Ivy build. I have used Ivy for GWT projects prior to 2.3 (GWT 2.0.x in particular), and the following dependencies (in my ...
2
votes
3answers
968 views
How to automatically create batch / shell scripts to run a Java console application?
I have a Java comman-line application, and wouldl like to create an Ant* build script that will create all the required batch / shell scripts to run the application succesfully including all classpath ...
2
votes
1answer
254 views
Any standard way to convert an ant project to Eclipse project?
For maven, we can use mvn eclispe:eclipse to do it. Any standard way if using ant?
2
votes
3answers
527 views
Maven:install jar file during build process
I have got a requirement as follows.
I need to run ant build file during maven build process. I need to invoke the build.xml from my pom.xml file. I have done that using maven-antrun-plugin. Now I ...
2
votes
1answer
1k views
How to create a jaxb.index file on the fly using Ant (or Maven)
This is more of knowledge sharing rather than asking a question. Thought this little Ant snippet might be useful to someone.
<target name="create-jaxb-index" depends="compile">
<!-- ...
2
votes
3answers
2k views
What is the difference between an EAR file and a “WebSphere Enhanced EAR”?
Supposing that I have a standard EAR file (and the source files that were used to generated it,) what additional processing needs to be done to convert it to an IBM WebSphere "Enhanced EAR"?
Another ...
1
vote
2answers
43 views
Maven: How to generate a standalone application?
I am using Maven to manage a console application project. On my machine, I type mvn exec:java and Maven handles everything. What I want is, however, to execute the same application on a different ...
1
vote
1answer
27 views
how to create the cassandra-jar from the cassandra source code?
I have made some changes to the Cassandra source code and I want to include these changes into the Hadoop cluster.For that I want to create jars from this updated source code.
Can I have the steps ...
1
vote
1answer
39 views
How to download from ftp server using maven
We have tried using ant ftp tasks, but could not get it working like shown below:
<artifactId>maven-antrun-plugin</artifactId>
<executions>
...
1
vote
1answer
53 views
Build a flex project on, ant or Maven?
I am going to write a build commands for flex 4.5 project, which is only based on actionscript not with java. I am very new to both maven and ant.So can you people suggest which is more compatible ...
1
vote
2answers
133 views
Checking an environment variable using the Maven AntRun plugin
I'm trying to check and see if the MULE_HOME environment variable is set within the maven-antrun-plugin without success. Here's what I have so far:
<plugin>
...
1
vote
2answers
47 views
Migration from ant to Maven producing 100+ jars
We are trying to migrate our builds from ant to maven. Project I am working for is using ant since ages. Scripts are real complex where build artifact is a zip file having a definite directory ...
1
vote
1answer
61 views
Specify memory for ant maven deploy task
I am using ant maven deploy task to upload the zip file created by the ant script to our repository, but the problem is the file is too big and it fails with
java.lang.OutOfMemoryError: Java heap ...
1
vote
3answers
209 views
How do I configure a Play! Framework project to be built as a war using only Ant or Maven?
I realize, from the documentation (http://www.playframework.org/documentation/1.2.1/deployment), that if the Play! Framework is already installed and configured properly then creating a deployable war ...
1
vote
1answer
97 views
Ant in Ant in Maven: How to add optional tasks?
I'm trying to run junitreport task in Ant in Ant in Maven:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
...