Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
2k views

Parent properties inside maven antrun plugin

There is a multi-module project. Inside the child I need to do some complicated stuff (integration test with deploying to application server and so on). So there is an integrationtest child, and from ...
4
votes
2answers
2k views

Maven: how to filter the same resource multiple times with different property values?

Our project uses Log4J, configured via log4j.properties file. We have multiple production servers, which log to different log files, so that the logs can be differentiated. So log4j.properties for ...
3
votes
1answer
2k views

How to bind maven antrun plugin to the clean phase

I have just translated an ant project into maven however since maven does not really deal with deployment I introduce some antrun into the build. However when I try to execute it the plugin skips my ...
3
votes
4answers
3k 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 ...
2
votes
1answer
2k views

Using antcontrib <if> task via maven-antrun-plugin

My maven java project uses the maven-antrun-plugin to execute a deploy.xml ant script that deploys my app. The deploy.xml uses the <if> task and this seems to be causing the problem; [INFO] ...
2
votes
3answers
494 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
587 views

maven antrun plugin

I have the following in my pom: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-ant-plugin</artifactId> ...
2
votes
1answer
2k views

Run a Ant task in Maven only if a property is set

My pom.xml is running an Ant task to deploy a file using FTP. However, this deployment must be only done if the -Dftp=true argument is given in the Maven command (i.e. mvn clean install -Dftp=true). ...
2
votes
2answers
5k views

How to execute tasks conditionally using the maven-antrun-plugin?

I need to execute some ant commands depending on an environment variable passed in as a parameter to the maven build command. At the moment I have 3 tasks blocks and only the tasks block with no ...
1
vote
1answer
110 views

How can I pass the antrun plugin a new environment variable?

I'm using the maven-antrun-plugin with install4j to build installers for my application. It doesn't work if java is not on the (system) path. Since it's forking a new java process to run the task, ...
1
vote
1answer
606 views

Maven Antrun Not Executing Tasks

I'm using Maven AntRun plugin 1.6 and from their example I cannot code the following ant task to be executed. Example url: ...
1
vote
1answer
93 views

Integrating ant resource generation targets into a Maven build

I'm currently working on a fairly large project that has been migrated from Ant to Maven. There are no problems with the actual build process (it compiles and packages the source code fine). The ...
1
vote
1answer
26 views

How do I get maven to die gracefully if expected parameters aren't supplied?

I'm using Maven 3.0.3 on Solaris 10. How do I get Maven to fail gracefully if the parameters "env" and "label" are not supplied on the command line ? They would normally be passed in as "-Denv=QA", ...
1
vote
1answer
304 views

How to call ant task to process webapp files after “copying webapp resources” and before “building war” steps in package phase?

I'm migrating from ant to maven. However I have a custom build functionality for process web resources that I don't want to adapt yet to maven (the cost is very high) so I'm using ant run plugin. I ...
1
vote
2answers
558 views

Replace task in Maven Antrun Plugin

I am using antrun plugin in my maven build to replace a token @version@ in some of the JSP files with the application version. This is what I am doing: <plugin> ...
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
2answers
364 views

Is it possible to set a maven property from ant?

I tried to use the maven-antrun-plugin to check in a first execution if a file exists and then set a property accordingly. In another execution (another phase) of the antrun-plugin I want to make use ...
1
vote
1answer
913 views

Maven antrun with sequential ant-contrib fails to run

We have a special routine to explode files in a subfolder into extensions, which will be copied and jared into single extension files. For this special approach I wanted to use the ...
1
vote
2answers
513 views

How to run an ant target from Maven2?

How do i run a specific target with the antrun-plugin from the command line? mvn antrun:run doesn't make it run. <project> ... <build> <plugins> ... ...
1
vote
1answer
450 views

Maven multiple modules - post-packaging step

I have a Maven project that consists of several modules. I have a single POM file that I use to invoke the build of all dependent modules. What I want to do is to copy a bunch of files to a single ...
1
vote
1answer
1k views

How do I prevent Maven build fail on Ant task failure?

I'm using the FTP Ant task with maven-antrun-plugin <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> ...
0
votes
1answer
14 views

Modify files inside multiple zip files using Maven

Today I wanted to perform this task, and I run across some issues in the way. So I present here my problem and the solution I found. Perhaps somebody knows a simpler solution! The problem was this: I ...
0
votes
0answers
57 views

How do I redirect maven's antrun exec command's output to stdout?

I'm using Maven 3.0.3. I have this antrun task, which uses the "exec" command ... <plugin> <artifactId>maven-antrun-plugin</artifactId> ...
0
votes
1answer
183 views

How to bind ant to a maven-plugin custom goal

The way to integrate maven with ant is to simply use the maven-antrun-plugin like <plugin> <groupId>org.apache.maven.plugins</groupId> ...
0
votes
1answer
75 views

Execute maven task first thing

I have a multi-module maven project and would like to execute an ant task before maven starts building the reactor. The only solution I've come up is to create a module that will execute this ant ...
0
votes
1answer
133 views

How do I recreate command run by Maven's antrun plugin?

I'm using Maven 3.0.3 on Solaris 10. I am using the antrun exec plugin. How do I figure out the command line statement that is actually being run? When running my command (designed to checkout code ...
0
votes
2answers
55 views

Problem with picking up a -Dattribute in Maven using Antrun

So I have this snippet in my pom <configuration> <target if="csc" > <echo>Unzipping md csc help</echo> </target> <target unless="csc"> ...
0
votes
1answer
251 views

Running antrun during war:exploded

For a Maven build I need to copy some files after the exploded directory has been made with the war plugin. Is it possible to run the antrun plugin during/after the war:exploded goal? If so how would ...
0
votes
2answers
267 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
172 views

Maven not executing my Ant target

I'm trying to do something really simple: run an Ant task from Maven. Foolproof, right? Wrong. Here's my pom: <?xml version="1.0" encoding="UTF-8"?> <project ...
0
votes
1answer
41 views

What phase to use if I want the goal (antrun:run) to be run after creating exploded war?

I have some ant task in my .pom, which copies exploded .war to the server. I want it to be run after creation of exploded .war. What should I enter in plugin configuration in <phase> part?
0
votes
1answer
538 views

Converting Ant to Maven: problem with target attribute “depends” on Ant

I am converting ant to maven2. I meet a problem. Please help me: In build.xml, i have <target name="clean"> <delete file="${dir.dist}/${api.jarfile}" /> <delete ...
0
votes
1answer
68 views

Maven: Result of Antrun is in target, but not in output of site-stage and site-deploy. Why?

I have configured the ant-run-plugin to run in the post-site phase. By the way, it transforms to findbugs-report. I find its result in my target/site-folder. Calling site-stage produces the entire ...