Friday, 17 July 2015

Maven-Properties plugin

<plugin>
    <groupId>org.codehaus.mojo</groupId>
      <artifactId>properties-maven-plugin</artifactId>
                <version>1.0-alpha-2</version>
                <executions>
                    <execution>
                        <phase>validate</phase>
                        <goals>
                            <goal>write-project-properties</goal>
                        </goals>
                        <configuration>
                            <outputFile>
                                ${project.build.directory}/test-classes/mvn.properties
                            </outputFile>
                        </configuration>
                    </execution>
             </executions>
</plugin>

No comments:

Post a Comment