Tagged Questions
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 ...
4
votes
3answers
548 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 ...
2
votes
0answers
108 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 ...
1
vote
2answers
38 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
112 views
How to retrieve information from antrun back to maven?
How can I get information from maven-antrun-plugin back to Maven script? For example:
[...]
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
...
1
vote
4answers
2k views
Using Maven ant task to install jar to local repository
At the end of my ant build id like it to call the equivalent of the command line call
mvn install:install-file -Dfile=my.jar -DgroupId=com.company.project -DartifactId=my_project -Dversion=1.0 ...
0
votes
2answers
215 views
exec-maven-plugin want to pass maven.dependency.classpath as a variable in my EXEC Goal
I want to define property or want to use maven.plugin.classpath and maven.dependency.classpath in my build.xml.
How can i do it ?
Sample code is as below...
<property> </property> is ...
0
votes
3answers
52 views
ANT->Maven task translator(or just use Maven Ant Tasks)
Is there a guide that outlines how to perform each of the following ant tasks using Maven?
http://ant.apache.org/manual/tasklist.html
Is it considered best practice to use Maven for these tasks or ...
0
votes
1answer
210 views
build failed when using maven call ant tasks “xslt”
This part of the pom.xml
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId> ...
0
votes
2answers
230 views
Maven - Best way to refer to a directory on the system path
I am trying to build an RPM from my Maven project. I have 5 different modules and each one has its own pom.xml, In the root I have one pom.xml which builds all modules (Typical Maven Setup). When I ...
0
votes
1answer
223 views
0
votes
0answers
552 views
Pros and cons of Ant vs. Maven? [closed]
Possible Duplicates:
Differences between Ant and Maven
Maven or Ant?
Hello,
What are some pros and cons of using the ant tool vs. Maven?
I had not realized this, but apparently this is ...
0
votes
2answers
265 views
How to disable antrun if certain file already exists?
How can I disable maven-antrun-plugin execution when certain file already exists?:
[...]
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
...
0
votes
1answer
729 views
Maven Ant Task: Replace property in pom.xml when executing Maven from Ant
In my Ant script, i'm executing Maven like this:
<artifact:mvn pom="${basedir}/pom.xml">
<arg value="glassfish:deploy" />
</artifact:mvn>
In my pom.xml, there is a property:
...