aboutsummaryrefslogtreecommitdiffstats
path: root/cps-tbdmt-dependencies
diff options
context:
space:
mode:
authorkrishnaa96 <krishna.moorthy6@wipro.com>2021-02-26 13:02:24 +0530
committerkrishnaa96 <krishna.moorthy6@wipro.com>2021-03-01 11:08:54 +0530
commiteb514d63eb47f335a1eb3119124a56225ac730cc (patch)
treef2b5cc8ffd63738ffee36b1b3ae38b0f1eb4ec99 /cps-tbdmt-dependencies
parent6668f15295fc6fe7a89a77cd98bcd3f4dfb39788 (diff)
Add cps-tdmt-service code
Issue-ID: CPS-243 Signed-off-by: krishnaa96 <krishna.moorthy6@wipro.com> Change-Id: I466bf00586dc8c11fcc50b673cf58d46ec461089
Diffstat (limited to 'cps-tbdmt-dependencies')
-rw-r--r--cps-tbdmt-dependencies/pom.xml51
1 files changed, 50 insertions, 1 deletions
diff --git a/cps-tbdmt-dependencies/pom.xml b/cps-tbdmt-dependencies/pom.xml
index 5b3a5b8..34650b9 100644
--- a/cps-tbdmt-dependencies/pom.xml
+++ b/cps-tbdmt-dependencies/pom.xml
@@ -30,7 +30,12 @@
<properties>
<cps.version>0.0.1-SNAPSHOT</cps.version>
+ <hibernate-jpa-api.version>1.0.1.Final</hibernate-jpa-api.version>
+ <jinjava.version>2.5.6</jinjava.version>
+ <lombok.version>1.18.16</lombok.version>
<nexusproxy>https://nexus.onap.org</nexusproxy>
+ <openpojo.version>0.8.13</openpojo.version>
+ <postgresql.version>42.2.5</postgresql.version>
<releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
<snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
<sonar.skip>true</sonar.skip>
@@ -65,6 +70,50 @@
<type>pom</type>
<scope>import</scope>
</dependency>
+ <dependency>
+ <groupId>org.postgresql</groupId>
+ <artifactId>postgresql</artifactId>
+ <version>${postgresql.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.hibernate.javax.persistence</groupId>
+ <artifactId>hibernate-jpa-2.0-api</artifactId>
+ <version>${hibernate-jpa-api.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.projectlombok</groupId>
+ <artifactId>lombok</artifactId>
+ <version>${lombok.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>com.hubspot.jinjava</groupId>
+ <artifactId>jinjava</artifactId>
+ <version>${jinjava.version}</version>
+ <exclusions>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-annotations</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-databind</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.core</groupId>
+ <artifactId>jackson-core</artifactId>
+ </exclusion>
+ <exclusion>
+ <groupId>com.fasterxml.jackson.dataformat</groupId>
+ <artifactId>jackson-dataformat-yaml</artifactId>
+ </exclusion>
+ </exclusions>
+ </dependency>
+ <dependency>
+ <groupId>com.openpojo</groupId>
+ <artifactId>openpojo</artifactId>
+ <version>${openpojo.version}</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
</dependencyManagement>
-</project> \ No newline at end of file
+</project>