|
50 | 50 | </distributionManagement> |
51 | 51 |
|
52 | 52 | <properties> |
53 | | - <maven.version>3.3.9</maven.version> |
| 53 | + <maven.version>3.5.4</maven.version> |
54 | 54 | <java.target.version>8</java.target.version> <!-- used for compiler plugin and animal-sniffer, for compatibility reasons with Java 9 only the values 6,7,8 and 9 is allowed --> |
55 | 55 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
56 | 56 | <arguments /> <!-- additional arguments for the forked Maven run during releases --> |
|
181 | 181 | <plugin> |
182 | 182 | <groupId>org.codehaus.mojo</groupId> |
183 | 183 | <artifactId>animal-sniffer-maven-plugin</artifactId> |
184 | | - <version>1.19</version> |
| 184 | + <version>1.20</version> |
185 | 185 | </plugin> |
186 | 186 | <plugin> |
187 | 187 | <groupId>org.apache.maven.plugins</groupId> |
|
198 | 198 | <artifactId>license-maven-plugin</artifactId> |
199 | 199 | <version>2.0.0</version> |
200 | 200 | </plugin> |
| 201 | + <plugin> |
| 202 | + <artifactId>maven-invoker-plugin</artifactId> |
| 203 | + <version>3.2.2</version> |
| 204 | + </plugin> |
201 | 205 | </plugins> |
202 | 206 | </pluginManagement> |
203 | 207 | <plugins> |
|
252 | 256 | </execution> |
253 | 257 | </executions> |
254 | 258 | </plugin> |
| 259 | + <plugin> |
| 260 | + <groupId>org.apache.maven.plugins</groupId> |
| 261 | + <artifactId>maven-invoker-plugin</artifactId> |
| 262 | + <executions> |
| 263 | + <execution> |
| 264 | + <goals> |
| 265 | + <goal>install</goal> |
| 266 | + <goal>run</goal> |
| 267 | + </goals> |
| 268 | + <configuration> |
| 269 | + <cloneProjectsTo>${project.build.directory}/it</cloneProjectsTo> |
| 270 | + <postBuildHookScript>verify.groovy</postBuildHookScript> |
| 271 | + <streamLogsOnFailures>true</streamLogsOnFailures> |
| 272 | + <!-- reuse global repo for speeding up builds |
| 273 | + <localRepositoryPath>target/it-repo</localRepositoryPath> --> |
| 274 | + </configuration> |
| 275 | + </execution> |
| 276 | + </executions> |
| 277 | + </plugin> |
255 | 278 | <!-- always generate javadoc --> |
256 | 279 | <plugin> |
257 | 280 | <groupId>org.apache.maven.plugins</groupId> |
|
295 | 318 | <artifactId>license-maven-plugin</artifactId> |
296 | 319 | <configuration> |
297 | 320 | <licenseName>epl_only_v1</licenseName> |
298 | | - <excludes>test/resources/**</excludes> |
| 321 | + <excludes>test/resources/**,it/**</excludes> |
299 | 322 | </configuration> |
300 | 323 | <executions> |
301 | 324 | <execution> |
|
0 commit comments