Merge "Remove app Maven property"
[cps/cps-temporal.git] / pom.xml
diff --git a/pom.xml b/pom.xml
index af98318..5bcb116 100755 (executable)
--- a/pom.xml
+++ b/pom.xml
@@ -33,7 +33,7 @@
 
     <groupId>org.onap.cps</groupId>
     <artifactId>cps-temporal</artifactId>
-    <version>0.0.1-SNAPSHOT</version>
+    <version>0.0.2-SNAPSHOT</version>
     <name>cps-temporal</name>
     <description>CPS Temporal Service</description>
 
@@ -47,7 +47,7 @@
         <minimum-coverage>0.8</minimum-coverage>
         <!-- Application dependencies versions -->
         <!--cps.version need to be changed to released Istanbul version-->
-        <cps.version>1.1.0-SNAPSHOT</cps.version>
+        <cps.version>1.1.0</cps.version>
         <mapstruct.version>1.4.2.Final</mapstruct.version>
     </properties>
 
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-starter-data-jpa</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-security</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-actuator</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>io.micrometer</groupId>
+            <artifactId>micrometer-registry-prometheus</artifactId>
+        </dependency>
         <dependency>
             <groupId>com.vladmihalcea</groupId>
             <artifactId>hibernate-types-52</artifactId>
         <dependency>
             <groupId>org.liquibase</groupId>
             <artifactId>liquibase-core</artifactId>
-            <version>4.3.2</version>
+            <version>4.4.2-nordix</version>
         </dependency>
         <dependency>
             <groupId>org.projectlombok</groupId>
             <groupId>org.springframework.boot</groupId>
             <artifactId>spring-boot-starter-validation</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.springframework.boot</groupId>
+            <artifactId>spring-boot-starter-hateoas</artifactId>
+        </dependency>
         <dependency>
             <groupId>org.mapstruct</groupId>
             <artifactId>mapstruct</artifactId>
         <dependency>
             <groupId>org.onap.cps</groupId>
             <artifactId>cps-events</artifactId>
-            <version>1.1.0-SNAPSHOT</version>
+            <version>1.1.0</version>
         </dependency>
         <dependency>
             <groupId>org.springdoc</groupId>
                 </exclusion>
             </exclusions>
         </dependency>
+        <dependency>
+            <groupId>org.springframework.security</groupId>
+            <artifactId>spring-security-test</artifactId>
+            <scope>test</scope>
+        </dependency>
         <dependency>
             <groupId>org.spockframework</groupId>
             <artifactId>spock-core</artifactId>
                     <version>3.0.0</version>
                     <configuration>
                         <container>
-                            <mainClass>${app}</mainClass>
                             <creationTime>USE_CURRENT_TIMESTAMP</creationTime>
                         </container>
                         <from>
         </pluginManagement>
     </build>
 
+    <repositories>
+        <repository>
+            <id>nordix-liquibase-repo</id>
+            <name>liquibase</name>
+            <url>https://artifactory.nordix.org/artifactory/liquibase</url>
+        </repository>
+    </repositories>
+
     <profiles>
         <profile>
-            <id>cps-temporal-docker</id>
+            <id>docker</id>
             <build>
                 <plugins>
                     <plugin>