Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[m2e-users] How to show in maven console echo messages from ant-run target ?

Hello,

I have set maven-antrun-plugin and write an echo message to be shown in the maven console.

 <execution>
              <id>copy-conf</id>
              <phase>package</phase>
              <goals>
                <goal>run</goal>
              </goals>
              <configuration>
                <target>
                      <echo message="Copying config dir" level="info" />
 
when m2e executes it this is what I see:
8/12/14, 2:25:26 PM GMT-3: [INFO] Executing tasks
8/12/14, 2:25:26 PM GMT-3: [INFO] Executed tasks
could someone point me to the right way to accomplish that ?

thanks

Cristiano

Back to the top