Merge "Introduce spotbug plugin"
[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         <spotbugs.version>4.2.0</spotbugs.version>
27         <springboot.version>2.3.3.RELEASE</springboot.version>
28         <springfox.version>3.0.0</springfox.version>
29         <swagger.version>2.1.4</swagger.version>
30         <testcontainers.version>1.15.1</testcontainers.version>
31         <yangtools.version>5.0.6</yangtools.version>
32     </properties>
33
34     <distributionManagement>
35         <repository>
36             <id>ecomp-releases</id>
37             <name>ECOMP Release Repository</name>
38             <url>${nexusproxy}${releaseNexusPath}</url>
39         </repository>
40         <snapshotRepository>
41             <id>ecomp-snapshots</id>
42             <name>ECOMP Snapshot Repository</name>
43             <url>${nexusproxy}${snapshotNexusPath}</url>
44         </snapshotRepository>
45     </distributionManagement>
46
47     <dependencyManagement>
48         <dependencies>
49             <dependency>
50                 <groupId>org.springframework.boot</groupId>
51                 <artifactId>spring-boot-dependencies</artifactId>
52                 <version>${springboot.version}</version>
53                 <type>pom</type>
54                 <scope>import</scope>
55             </dependency>
56             <dependency>
57                 <groupId>org.opendaylight.yangtools</groupId>
58                 <artifactId>yangtools-artifacts</artifactId>
59                 <version>${yangtools.version}</version>
60                 <type>pom</type>
61                 <scope>import</scope>
62             </dependency>
63             <dependency>
64                 <groupId>io.swagger.core.v3</groupId>
65                 <artifactId>swagger-annotations</artifactId>
66                 <version>${swagger.version}</version>
67             </dependency>
68             <dependency>
69                 <groupId>io.springfox</groupId>
70                 <artifactId>springfox-boot-starter</artifactId>
71                 <version>${springfox.version}</version>
72             </dependency>
73             <dependency>
74                 <groupId>com.vladmihalcea</groupId>
75                 <artifactId>hibernate-types-52</artifactId>
76                 <version>${hibernate-types.version}</version>
77             </dependency>
78             <dependency>
79                 <groupId>org.codehaus.groovy</groupId>
80                 <artifactId>groovy</artifactId>
81                 <version>${groovy.version}</version>
82             </dependency>
83             <dependency>
84                 <groupId>org.spockframework</groupId>
85                 <artifactId>spock-core</artifactId>
86                 <version>${spock-core.version}</version>
87             </dependency>
88             <dependency>
89                 <groupId>org.spockframework</groupId>
90                 <artifactId>spock-spring</artifactId>
91                 <version>${spock-spring.version}</version>
92             </dependency>
93             <dependency>
94                 <groupId>cglib</groupId>
95                 <artifactId>cglib-nodep</artifactId>
96                 <version>${cglib-nodep.version}</version>
97             </dependency>
98             <dependency>
99                 <groupId>org.apache.commons</groupId>
100                 <artifactId>commons-lang3</artifactId>
101                 <version>${commons-lang3.version}</version>
102             </dependency>
103             <dependency>
104                 <groupId>org.modelmapper</groupId>
105                 <artifactId>modelmapper</artifactId>
106                 <version>${modelmapper.version}</version>
107             </dependency>
108             <dependency>
109                 <groupId>org.testcontainers</groupId>
110                 <artifactId>postgresql</artifactId>
111                 <version>${testcontainers.version}</version>
112             </dependency>
113             <dependency>
114                 <groupId>com.github.spotbugs</groupId>
115                 <artifactId>spotbugs</artifactId>
116                 <version>${spotbugs.version}</version>
117             </dependency>
118         </dependencies>
119     </dependencyManagement>
120 </project>