aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Santos <eric.santos@yoppworks.com>2021-01-28 13:12:41 -0500
committerEric Santos <eric.santos@yoppworks.com>2021-01-28 13:12:41 -0500
commit83d829e1124c8ff1358c0553dca0806d29613509 (patch)
treedc94f27e5b4a3e7e4d8ce6486673a40e3155b264
parent8ed68c12e3f4f7ea29444fb1e619b70c8d6cd008 (diff)
Update to java 11HEADmasterhonolulu
Issue-ID: AAI-3000 Signed-off-by: Santos, Eric <eric.santos@yoppworks.com> Change-Id: I24870118e2855b22006105bccb54e5345b8cf5e9
-rw-r--r--pom.xml6
1 files changed, 2 insertions, 4 deletions
diff --git a/pom.xml b/pom.xml
index 88712dd..d57f113 100644
--- a/pom.xml
+++ b/pom.xml
@@ -41,8 +41,7 @@
<properties>
<aai.common.version>1.6.10</aai.common.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <maven.compiler.source>1.8</maven.compiler.source>
- <maven.compiler.target>1.8</maven.compiler.target>
+ <maven.compiler.release>11</maven.compiler.release>
<sitePath>/content/sites/site/org/onap/aai/${project.artifactId}/${project.version}</sitePath>
<!-- Minimum code coverage percentage. Please update this figure as coverage increases to prevent any drops in
coverage caused by new changes. Note that this figure cannot be lower than the ONAP requirement of 0.55 -->
@@ -72,8 +71,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
- <source>${maven.compiler.source}</source>
- <target>${maven.compiler.target}</target>
+ <release>${maven.compiler.release}</release>
</configuration>
</plugin>
<plugin>