Merge "[BUG] Correctly parse observedTimestamp"
[cps.git] / cps-dependencies / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5
6     <modelVersion>4.0.0</modelVersion>
7     <groupId>org.onap.cps</groupId>
8     <artifactId>cps-dependencies</artifactId>
9     <version>0.0.1-SNAPSHOT</version>
10     <packaging>pom</packaging>
11
12     <name>${project.groupId}:${project.artifactId}</name>
13     <description>This artifact contains dependencyManagement declarations of upstream versions.</description>
14
15     <properties>
16         <cglib-nodep.version>3.1</cglib-nodep.version>
17         <commons-lang3.version>3.11</commons-lang3.version>
18         <groovy.version>3.0.6</groovy.version>
19         <hibernate-types.version>2.10.0</hibernate-types.version>
20         <nexusproxy>https://nexus.onap.org</nexusproxy>
21         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
22         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
23         <modelmapper.version>2.3.8</modelmapper.version>
24         <spock-core.version>2.0-M2-groovy-3.0</spock-core.version>
25         <spock-spring.version>1.3-groovy-2.5</spock-spring.version>
26         <springboot.version>2.3.3.RELEASE</springboot.version>
27         <springfox.version>3.0.0</springfox.version>
28         <swagger.version>2.1.4</swagger.version>
29         <testcontainers.version>1.15.1</testcontainers.version>
30         <yangtools.version>5.0.6</yangtools.version>
31     </properties>
32
33     <distributionManagement>
34         <repository>
35             <id>ecomp-releases</id>
36             <name>ECOMP Release Repository</name>
37             <url>${nexusproxy}${releaseNexusPath}</url>
38         </repository>
39         <snapshotRepository>
40             <id>ecomp-snapshots</id>
41             <name>ECOMP Snapshot Repository</name>
42             <url>${nexusproxy}${snapshotNexusPath}</url>
43         </snapshotRepository>
44     </distributionManagement>
45
46     <dependencyManagement>
47         <dependencies>
48             <dependency>
49                 <groupId>org.springframework.boot</groupId>
50                 <artifactId>spring-boot-dependencies</artifactId>
51                 <version>${springboot.version}</version>
52                 <type>pom</type>
53                 <scope>import</scope>
54             </dependency>
55             <dependency>
56                 <groupId>org.opendaylight.yangtools</groupId>
57                 <artifactId>yangtools-artifacts</artifactId>
58                 <version>${yangtools.version}</version>
59                 <type>pom</type>
60                 <scope>import</scope>
61             </dependency>
62             <dependency>
63                 <groupId>io.swagger.core.v3</groupId>
64                 <artifactId>swagger-annotations</artifactId>
65                 <version>${swagger.version}</version>
66             </dependency>
67             <dependency>
68                 <groupId>io.springfox</groupId>
69                 <artifactId>springfox-boot-starter</artifactId>
70                 <version>${springfox.version}</version>
71             </dependency>
72             <dependency>
73                 <groupId>com.vladmihalcea</groupId>
74                 <artifactId>hibernate-types-52</artifactId>
75                 <version>${hibernate-types.version}</version>
76             </dependency>
77             <dependency>
78                 <groupId>org.codehaus.groovy</groupId>
79                 <artifactId>groovy</artifactId>
80                 <version>${groovy.version}</version>
81             </dependency>
82             <dependency>
83                 <groupId>org.spockframework</groupId>
84                 <artifactId>spock-core</artifactId>
85                 <version>${spock-core.version}</version>
86             </dependency>
87             <dependency>
88                 <groupId>org.spockframework</groupId>
89                 <artifactId>spock-spring</artifactId>
90                 <version>${spock-spring.version}</version>
91             </dependency>
92             <dependency>
93                 <groupId>cglib</groupId>
94                 <artifactId>cglib-nodep</artifactId>
95                 <version>${cglib-nodep.version}</version>
96             </dependency>
97             <dependency>
98                 <groupId>org.apache.commons</groupId>
99                 <artifactId>commons-lang3</artifactId>
100                 <version>${commons-lang3.version}</version>
101             </dependency>
102             <dependency>
103                 <groupId>org.modelmapper</groupId>
104                 <artifactId>modelmapper</artifactId>
105                 <version>${modelmapper.version}</version>
106             </dependency>
107             <dependency>
108                 <groupId>org.testcontainers</groupId>
109                 <artifactId>postgresql</artifactId>
110                 <version>${testcontainers.version}</version>
111             </dependency>
112         </dependencies>
113     </dependencyManagement>
114 </project>