Could someone please tell what's wrong here:

 

I want to execute an ant build file. The filename is build.xml, which is
located in the same location as the pom.xml. It has a default target.

 

In pom.xml, I have:

 

.

<plugin>

   <artifactId>maven-antrun-plugin</artifactId>

   <executions>

      <execution>

         <phase>generate-sources</phase>

         <configuration>

            <tasks>

               <ant antfile="build.xml"/>

            </tasks>

         </configuration>

         <goals>

            <goal>run</goal>

         </goals>

      </execution>

   </executions>

</plugin>

.

 

When executing (see below) no ant tasks seem to be run. 

Any ideas?

 

/Mattias

 

C:\work\ratereview\clients\trunk>m2 -X antrun:run

+ Error stacktraces are turned on.

[DEBUG] Building Maven user-level plugin registry from: 'C:\Documents and
Settings\mattiasar\.m2\plugin-registry.xml'

[DEBUG] Building Maven global-level plugin registry from:
'C:\java\MAVEN-~1.0-B\bin\..\conf\plugin-registry.xml'

[INFO] Searching repository for plugin with prefix: 'antrun'.

[DEBUG] maven-antrun-plugin: resolved to version 1.0-rc1 from repository
central

[INFO]
----------------------------------------------------------------------------

[INFO] Building RateReview Clients

[INFO]    task-segment: [antrun:run]

[INFO]
----------------------------------------------------------------------------

[DEBUG] eniro-ratereview:ratereview-clients:jar:1.0-SNAPSHOT (selected for
null)

[DEBUG]   axis:axis-wsdl4j:jar:1.5.1 (selected for compile)

[DEBUG]   axis:axis-jaxrpc:jar:1.2.1 (selected for compile)

[DEBUG]   axis:axis-saaj:jar:1.2.1 (selected for compile)

[DEBUG]   commons-discovery:commons-discovery:jar:0.2 (selected for compile)

[DEBUG]     junit:junit:jar:3.7 (selected for compile)

[DEBUG]     commons-logging:commons-logging:jar:1.0.3 (selected for compile)

[DEBUG]       junit:junit:jar:3.7 (removed - nearer found: 3.7)

[DEBUG]       junit:junit:jar:3.7 (selected for compile)

[DEBUG]       logkit:logkit:jar:1.0.1 (selected for compile)

[DEBUG]       log4j:log4j:jar:1.2.6 (selected for compile)

[DEBUG]   jgoodies:forms:jar:1.0.5 (selected for compile)

[DEBUG]   axis:axis-ant:jar:1.2.1 (selected for compile)

[DEBUG]   javax.mail:mail:jar:1.3.2 (selected for compile)

[DEBUG]     javax.activation:activation:jar:1.0.2 (selected for compile)

[DEBUG]   axis:axis:jar:1.2.1 (selected for compile)

[DEBUG]   javax.activation:activation:jar:1.0.2 (removed - nearer found:
1.0.2)

[DEBUG]   javax.activation:activation:jar:1.0.2 (selected for compile)

[DEBUG] org.apache.maven.plugins:maven-antrun-plugin:maven-plugin:1.0-rc1
(selected for runtime)

[DEBUG]   ant:ant:jar:1.6.5 (selected for runtime)

[DEBUG]   ant:ant-launcher:jar:1.6.5 (selected for runtime)

[INFO] [antrun:run]

[INFO] Executing tasks

[INFO] Executed tasks

[INFO]
----------------------------------------------------------------------------

[INFO] BUILD SUCCESSFUL

[INFO]
----------------------------------------------------------------------------

[INFO] Total time: < 1 second

[INFO] Finished at: Wed Oct 05 14:50:21 CEST 2005

[INFO] Final Memory: 1M/4M

[INFO]
----------------------------------------------------------------------------

Reply via email to