Fix for security hotspot related to wek cyptography
[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>1.1.0-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-codec.version>1.15</commons-codec.version>
18         <commons-lang3.version>3.11</commons-lang3.version>
19         <groovy.version>3.0.6</groovy.version>
20         <hibernate-types.version>2.10.0</hibernate-types.version>
21         <liquibase.version>4.3.1</liquibase.version>
22         <nexusproxy>https://nexus.onap.org</nexusproxy>
23         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
24         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
25         <modelmapper.version>2.3.8</modelmapper.version>
26         <sonar.skip>true</sonar.skip>
27         <spock-core.version>2.0-M2-groovy-3.0</spock-core.version>
28         <spock-spring.version>1.3-groovy-2.5</spock-spring.version>
29         <spotbugs.version>4.2.0</spotbugs.version>
30         <springboot.version>2.3.8.RELEASE</springboot.version>
31         <springboot.cloud.version>Hoxton.SR9</springboot.cloud.version>
32         <springfox.version>3.0.0</springfox.version>
33         <swagger.version>2.1.4</swagger.version>
34         <testcontainers.version>1.15.1</testcontainers.version>
35         <yangtools.version>5.0.7</yangtools.version>
36     </properties>
37
38     <distributionManagement>
39         <repository>
40             <id>ecomp-releases</id>
41             <name>ECOMP Release Repository</name>
42             <url>${nexusproxy}${releaseNexusPath}</url>
43         </repository>
44         <snapshotRepository>
45             <id>ecomp-snapshots</id>
46             <name>ECOMP Snapshot Repository</name>
47             <url>${nexusproxy}${snapshotNexusPath}</url>
48         </snapshotRepository>
49     </distributionManagement>
50
51     <dependencyManagement>
52         <dependencies>
53             <dependency>
54                 <groupId>org.springframework.boot</groupId>
55                 <artifactId>spring-boot-dependencies</artifactId>
56                 <version>${springboot.version}</version>
57                 <type>pom</type>
58                 <scope>import</scope>
59             </dependency>
60             <dependency>
61                 <groupId>org.springframework.cloud</groupId>
62                 <artifactId>spring-cloud-dependencies</artifactId>
63                 <version>${springboot.cloud.version}</version>
64                 <type>pom</type>
65                 <scope>import</scope>
66             </dependency>
67             <dependency>
68                 <groupId>org.opendaylight.yangtools</groupId>
69                 <artifactId>yangtools-artifacts</artifactId>
70                 <version>${yangtools.version}</version>
71                 <type>pom</type>
72                 <scope>import</scope>
73             </dependency>
74             <dependency>
75                 <groupId>io.swagger.core.v3</groupId>
76                 <artifactId>swagger-annotations</artifactId>
77                 <version>${swagger.version}</version>
78             </dependency>
79             <!---To be removed once swagger-codegen-maven-plugin is upgraded-->
80             <dependency>
81                 <groupId>io.swagger</groupId>
82                 <artifactId>swagger-annotations</artifactId>
83                 <version>1.6.2</version>
84             </dependency>
85             <dependency>
86                 <groupId>io.springfox</groupId>
87                 <artifactId>springfox-boot-starter</artifactId>
88                 <version>${springfox.version}</version>
89             </dependency>
90             <dependency>
91                 <groupId>com.vladmihalcea</groupId>
92                 <artifactId>hibernate-types-52</artifactId>
93                 <version>${hibernate-types.version}</version>
94             </dependency>
95             <dependency>
96                 <groupId>org.codehaus.groovy</groupId>
97                 <artifactId>groovy</artifactId>
98                 <version>${groovy.version}</version>
99             </dependency>
100             <dependency>
101                 <groupId>org.spockframework</groupId>
102                 <artifactId>spock-core</artifactId>
103                 <version>${spock-core.version}</version>
104             </dependency>
105             <dependency>
106                 <groupId>org.spockframework</groupId>
107                 <artifactId>spock-spring</artifactId>
108                 <version>${spock-spring.version}</version>
109             </dependency>
110             <dependency>
111                 <groupId>cglib</groupId>
112                 <artifactId>cglib-nodep</artifactId>
113                 <version>${cglib-nodep.version}</version>
114             </dependency>
115             <dependency>
116                 <groupId>org.apache.commons</groupId>
117                 <artifactId>commons-lang3</artifactId>
118                 <version>${commons-lang3.version}</version>
119             </dependency>
120             <dependency>
121                 <groupId>org.modelmapper</groupId>
122                 <artifactId>modelmapper</artifactId>
123                 <version>${modelmapper.version}</version>
124             </dependency>
125             <dependency>
126                 <groupId>org.testcontainers</groupId>
127                 <artifactId>postgresql</artifactId>
128                 <version>${testcontainers.version}</version>
129             </dependency>
130             <dependency>
131                 <groupId>org.testcontainers</groupId>
132                 <artifactId>spock</artifactId>
133                 <version>${testcontainers.version}</version>
134             </dependency>
135             <dependency>
136                 <groupId>com.github.spotbugs</groupId>
137                 <artifactId>spotbugs</artifactId>
138                 <version>${spotbugs.version}</version>
139             </dependency>
140             <dependency>
141                 <groupId>org.liquibase</groupId>
142                 <artifactId>liquibase-core</artifactId>
143                 <version>${liquibase.version}</version>
144             </dependency>
145         </dependencies>
146     </dependencyManagement>
147 </project>