Hello,

may someone can give me a hint what i am doing wrong while i try to exceute
the ANT Plugin in one of my Subprojekts of a Multiprojekt.

<build>
     <plugins>
       <!-- Version muss spaeter im Master Pom vergeben werden -->
       <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-antrun-plugin</artifactId>
           <executions>
                  <execution>
               <id>compile</id>
               <phase>compile</phase>
               <configuration>
               <tasks>
<property name="compile_classpath" refid="maven.compile.classpath"/> <property name="runtime_classpath" refid="maven.runtime.classpath"/> <property name="test_classpath" refid="maven.test.classpath"/> <property name="plugin_classpath" refid="maven.plugin.classpath"/>

<echo message="compile classpath: ${compile_classpath}"/> <echo message="runtime classpath: ${runtime_classpath}"/>
                   <echo message="test classpath:    ${test_classpath}"/>
                   <echo message="plugin classpath:  ${plugin_classpath}"/>
               </tasks>
               </configuration>
               <goals>
                     <goal>run</goal>
               </goals>
                 </execution>
           </executions>
</plugin>

The Phase "Compile"  should show Messages... On commandline
i do "mvn compile", but nothing gets invoked, why ?


best regards,
Jens

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to