Friday, 17 July 2015

Maven-execute plugin

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>exec-maven-plugin</artifactId>
    <version>1.1.1</version>
    <executions>
    <execution>
      <phase>test</phase>
      <goals>
      <goal>java</goal>
      </goals>
      <configuration>
      <mainClass>com.bt.noas.sipt.release.ReleaseProfiles</mainClass>
      <arguments>
        <argument></argument>
      </arguments>
      </configuration>
    </execution>
    </executions>
</plugin>

No comments:

Post a Comment