...
Finally, configure the Cargo Maven Plugin by specifying a SNAPSHOT version. For example, to use version 1.2.13-SNAPSHOT you would declare something similar to the following in your POM:
| Code Block | ||
|---|---|---|
| ||
[...]
<build>
<plugins>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.2.13-SNAPSHOT</version>
[...]
</plugin>
[...]
</plugins>
</build>
[...]
|
...