Add distributionManagement
[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         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
22         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
23         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
24         <spock-core.version>2.0-M2-groovy-3.0</spock-core.version>
25         <springboot.version>2.3.3.RELEASE</springboot.version>
26         <springfox.version>3.0.0</springfox.version>
27         <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
28         <swagger.version>2.1.4</swagger.version>
29         <yangtools.version>5.0.6</yangtools.version>
30     </properties>
31
32     <distributionManagement>
33         <repository>
34             <id>ecomp-releases</id>
35             <name>ECOMP Release Repository</name>
36             <url>${nexusproxy}${releaseNexusPath}</url>
37         </repository>
38         <snapshotRepository>
39             <id>ecomp-snapshots</id>
40             <name>ECOMP Snapshot Repository</name>
41             <url>${nexusproxy}${snapshotNexusPath}</url>
42         </snapshotRepository>
43     </distributionManagement>
44
45     <dependencyManagement>
46         <dependencies>
47             <dependency>
48                 <groupId>org.springframework.boot</groupId>
49                 <artifactId>spring-boot-dependencies</artifactId>
50                 <version>${springboot.version}</version>
51                 <type>pom</type>
52                 <scope>import</scope>
53             </dependency>
54             <dependency>
55                 <groupId>org.opendaylight.yangtools</groupId>
56                 <artifactId>yangtools-artifacts</artifactId>
57                 <version>${yangtools.version}</version>
58                 <type>pom</type>
59                 <scope>import</scope>
60             </dependency>
61             <dependency>
62                 <groupId>io.swagger.core.v3</groupId>
63                 <artifactId>swagger-annotations</artifactId>
64                 <version>${swagger.version}</version>
65             </dependency>
66             <dependency>
67                 <groupId>io.springfox</groupId>
68                 <artifactId>springfox-boot-starter</artifactId>
69                 <version>${springfox.version}</version>
70             </dependency>
71             <dependency>
72                 <groupId>com.vladmihalcea</groupId>
73                 <artifactId>hibernate-types-52</artifactId>
74                 <version>${hibernate-types.version}</version>
75             </dependency>
76             <dependency>
77                 <groupId>org.codehaus.groovy</groupId>
78                 <artifactId>groovy</artifactId>
79                 <version>${groovy.version}</version>
80             </dependency>
81             <dependency>
82                 <groupId>org.spockframework</groupId>
83                 <artifactId>spock-core</artifactId>
84                 <version>${spock-core.version}</version>
85             </dependency>
86             <dependency>
87                 <groupId>cglib</groupId>
88                 <artifactId>cglib-nodep</artifactId>
89                 <version>${cglib-nodep.version}</version>
90             </dependency>
91             <dependency>
92                 <groupId>org.apache.commons</groupId>
93                 <artifactId>commons-lang3</artifactId>
94                 <version>${commons-lang3.version}</version>
95             </dependency>
96         </dependencies>
97     </dependencyManagement>
98 </project>