add jdk11 profile
Signed-off-by: olivier lamy <olamy@webtide.com>
This commit is contained in:
parent
0b44f47b45
commit
98875c3097
47
pom.xml
47
pom.xml
|
@ -1006,7 +1006,7 @@
|
||||||
</dependencyManagement>
|
</dependencyManagement>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
<!-- use last snapshot of jacoco and failsafe for jdk10 -->
|
<!-- use last snapshot of jacoco for jdk10 -->
|
||||||
<profile>
|
<profile>
|
||||||
<id>jdk10</id>
|
<id>jdk10</id>
|
||||||
<activation>
|
<activation>
|
||||||
|
@ -1050,6 +1050,51 @@
|
||||||
</pluginRepository>
|
</pluginRepository>
|
||||||
</pluginRepositories>
|
</pluginRepositories>
|
||||||
</profile>
|
</profile>
|
||||||
|
<profiles>
|
||||||
|
<!-- use last snapshot of jacoco for jdk11 -->
|
||||||
|
<profile>
|
||||||
|
<id>jdk11</id>
|
||||||
|
<activation>
|
||||||
|
<jdk>11</jdk>
|
||||||
|
</activation>
|
||||||
|
<build>
|
||||||
|
<pluginManagement>
|
||||||
|
<plugins>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.jacoco</groupId>
|
||||||
|
<artifactId>jacoco-maven-plugin</artifactId>
|
||||||
|
<version>0.8.1-SNAPSHOT</version>
|
||||||
|
<configuration>
|
||||||
|
<skip>true</skip>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
|
</plugins>
|
||||||
|
</pluginManagement>
|
||||||
|
</build>
|
||||||
|
<pluginRepositories>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>oss.snapshots</id>
|
||||||
|
<name>OSS Snapshots</name>
|
||||||
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</snapshots>
|
||||||
|
</pluginRepository>
|
||||||
|
<pluginRepository>
|
||||||
|
<id>apache.snapshots</id>
|
||||||
|
<url>https://repository.apache.org/content/repositories/snapshots</url>
|
||||||
|
<releases>
|
||||||
|
<enabled>false</enabled>
|
||||||
|
</releases>
|
||||||
|
<snapshots>
|
||||||
|
<enabled>true</enabled>
|
||||||
|
</snapshots>
|
||||||
|
</pluginRepository>
|
||||||
|
</pluginRepositories>
|
||||||
|
</profile>
|
||||||
<profile>
|
<profile>
|
||||||
<id>errorprone</id>
|
<id>errorprone</id>
|
||||||
<build>
|
<build>
|
||||||
|
|
Loading…
Reference in New Issue