summaryrefslogtreecommitdiffstats
path: root/artifactbroker/pom.xml
diff options
context:
space:
mode:
authorLukasz Rajewski <lukasz.rajewski@orange.com>2020-08-11 17:46:51 +0200
committerLukasz Rajewski <lukasz.rajewski@orange.com>2020-08-13 11:35:53 +0200
commit7351cde6316dc9524bbc6856924456525802f9e1 (patch)
treeb56c994503ed27aacb7b36869276203659e0536f /artifactbroker/pom.xml
parentdf84ceb0f89fcf4c12dc13e809363c158492b430 (diff)
ArtifactBroker Java 11 Upgrade
ArtifactBroker Java 11 Upgrade Issue-ID: REQ-351 Signed-off-by: Lukasz Rajewski <lukasz.rajewski@orange.com> Change-Id: I4d45eb08889da2352796f5d2fbddfe453fb009da
Diffstat (limited to 'artifactbroker/pom.xml')
-rw-r--r--artifactbroker/pom.xml37
1 files changed, 37 insertions, 0 deletions
diff --git a/artifactbroker/pom.xml b/artifactbroker/pom.xml
index 67be674..4516ca2 100644
--- a/artifactbroker/pom.xml
+++ b/artifactbroker/pom.xml
@@ -133,6 +133,36 @@
<build>
<plugins>
<plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-compiler-plugin</artifactId>
+ <version>3.8.0</version>
+ <configuration>
+ <release>11</release>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-enforcer-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>enforce-versions</id>
+ <goals>
+ <goal>enforce</goal>
+ </goals>
+ <configuration>
+ <rules>
+ <requireMavenVersion>
+ <version>3.0.5</version>
+ </requireMavenVersion>
+ <requireJavaVersion>
+ <version>11</version>
+ </requireJavaVersion>
+ </rules>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
@@ -190,6 +220,13 @@
</dependency>
</dependencies>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>versions-maven-plugin</artifactId>
+ <configuration>
+ <generateBackupPoms>false</generateBackupPoms>
+ </configuration>
+ </plugin>
</plugins>
<pluginManagement>
<plugins>