Tied exec:java to verify phase.

This commit is contained in:
Erik C. Thauvin 2019-04-17 14:49:36 -07:00
parent a9bcd354ed
commit c0be96dd24
2 changed files with 43 additions and 45 deletions

View file

@ -194,7 +194,7 @@ To install and run from [Maven](https://maven.apache.org/), configure an artifac
Please look at [pom.xml](https://github.com/ethauvin/semver/blob/master/examples/java/pom.xml) in the [Java example](https://github.com/ethauvin/semver/tree/master/examples/java) directory for a sample: Please look at [pom.xml](https://github.com/ethauvin/semver/blob/master/examples/java/pom.xml) in the [Java example](https://github.com/ethauvin/semver/tree/master/examples/java) directory for a sample:
```bash ```bash
mvn compile exec:java mvn verify
``` ```
### Gradle ### Gradle

View file

@ -10,11 +10,19 @@
<name>Example</name> <name>Example</name>
<properties> <properties>
<semver>1.2.0</semver> <semver.version>1.2.0</semver.version>
</properties> </properties>
<dependencies>
<dependency>
<groupId>net.thauvin.erik</groupId>
<artifactId>semver</artifactId>
<version>${semver.version}</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build> <build>
<pluginManagement>
<plugins> <plugins>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
@ -29,7 +37,7 @@
<annotationProcessorPath> <annotationProcessorPath>
<groupId>net.thauvin.erik</groupId> <groupId>net.thauvin.erik</groupId>
<artifactId>semver</artifactId> <artifactId>semver</artifactId>
<version>${semver}</version> <version>${semver.version}</version>
</annotationProcessorPath> </annotationProcessorPath>
</annotationProcessorPaths> </annotationProcessorPaths>
</configuration> </configuration>
@ -40,8 +48,8 @@
<version>1.6.0</version> <version>1.6.0</version>
<executions> <executions>
<execution> <execution>
<id>my-execution</id> <id>run</id>
<phase>package</phase> <phase>verify</phase>
<goals> <goals>
<goal>java</goal> <goal>java</goal>
</goals> </goals>
@ -52,15 +60,5 @@
</configuration> </configuration>
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement>
</build> </build>
<dependencies>
<dependency>
<groupId>net.thauvin.erik</groupId>
<artifactId>semver</artifactId>
<version>${semver}</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project> </project>