aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorpriyanka.akhade <priyanka.akhade@huawei.com>2020-09-09 11:25:32 +0530
committerpriyanka.akhade <priyanka.akhade@huawei.com>2020-09-09 15:06:50 +0530
commit5be1390d67a7a0fa05117e49d7a82134d6f81dcf (patch)
tree32784dd49721858799784be0dd5760f4f2086aef /pom.xml
parent44b22b049eb949b3102ef2a207c89a60deceff04 (diff)
java migration 8->11
Signed-off-by: priyanka.akhade <priyanka.akhade@huawei.com> Issue-ID: CLI-288 Change-Id: I418f30e46acc99cb4802455e12212f123179eeb0
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml7
1 files changed, 4 insertions, 3 deletions
diff --git a/pom.xml b/pom.xml
index 0ac3d4ec..2f5bddef 100644
--- a/pom.xml
+++ b/pom.xml
@@ -34,6 +34,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<package.name>cli</package.name>
<maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
+ <jmockit.version>1.43</jmockit.version>
</properties>
<modules>
@@ -59,6 +60,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
+ <version>2.22.0</version>
<configuration>
<systemPropertyVariables>
<ONAP_CLI_HOME>.</ONAP_CLI_HOME>
@@ -87,10 +89,9 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
- <version>3.1</version>
+ <version>3.8.1</version>
<configuration>
- <source>1.8</source>
- <target>1.8</target>
+ <release>11</release>
</configuration>
</plugin>
<plugin>
2 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186