Changed an instance-reference to a static reference.
[cli.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index de6aa55..67d9c1c 100644 (file)
--- a/pom.xml
+++ b/pom.xml
     See the License for the specific language governing permissions and
     limitations under the License.
  -->
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
     <modelVersion>4.0.0</modelVersion>
 
     <parent>
       <groupId>org.onap.oparent</groupId>
       <artifactId>oparent</artifactId>
-      <version>1.1.0</version>
+      <version>2.1.0</version>
     </parent>
 
     <groupId>org.onap.cli</groupId>
     <artifactId>cli</artifactId>
-    <version>2.0.0</version>
+    <version>6.0.1-SNAPSHOT</version>
 
     <packaging>pom</packaging>
     <name>cli</name>
@@ -33,7 +33,8 @@
     <properties>
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
         <package.name>cli</package.name>
-        <maven.build.timestamp.format>yyyy-MM-dd HH:mm z</maven.build.timestamp.format>
+        <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
+        <jmockit.version>1.43</jmockit.version>
     </properties>
 
   <modules>
@@ -41,8 +42,9 @@
         <module>profiles</module>
         <module>products</module>
         <module>main</module>
-        <module>deployment</module>
         <module>validate</module>
+        <module>grpc</module>
+        <module>deployment</module>
   </modules>
 
     <distributionManagement>
@@ -58,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>
             <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>