move to 1.7.0-SNAPSHOT
[appc/cdt.git] / CdtProxyService / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3         ============LICENSE_START==========================================
4         ===================================================================
5         Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
6         ===================================================================
7
8         Unless otherwise specified, all software contained herein is licensed
9         under the Apache License, Version 2.0 (the License);
10         you may not use this software except in compliance with the License.
11         You may obtain a copy of the License at
12
13         http://www.apache.org/licenses/LICENSE-2.0
14
15         Unless required by applicable law or agreed to in writing, software
16         distributed under the License is distributed on an "AS IS" BASIS,
17         WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18         See the License for the specific language governing permissions and
19         limitations under the License.
20
21         ============LICENSE_END============================================
22 -->
23
24 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25          xmlns="http://maven.apache.org/POM/4.0.0"
26          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27     <modelVersion>4.0.0</modelVersion>
28     <groupId>org.onap.appc.cdt</groupId>
29     <artifactId>cdt-proxy-service</artifactId>
30     <name>CdtProxyService</name>
31     <version>1.7.0-SNAPSHOT</version>
32     <packaging>jar</packaging>
33     <properties>
34         <java.version>1.8</java.version>
35         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36         <start-class>org.onap.appc.cdt.service.MainApplication</start-class>
37         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
38     </properties>
39     
40     <!-- ================================================================================== -->
41     <!-- Distribution Management Sites -->
42     <!-- ================================================================================== -->
43     <distributionManagement>        
44         <repository>
45             <id>ecomp-releases</id>
46             <name>openecomp-repository-releases</name>
47             <url>${onap.nexus.url}/content/repositories/releases</url>
48         </repository>
49         <snapshotRepository>
50             <id>ecomp-snapshots</id>
51             <name>openecomp-repository-snapshots</name>
52             <url>${onap.nexus.url}/content/repositories/snapshots</url>
53         </snapshotRepository>
54     </distributionManagement>
55     
56     <!-- Inherit defaults from Spring Boot -->
57     <parent>
58         <groupId>org.springframework.boot</groupId>
59         <artifactId>spring-boot-starter-parent</artifactId>
60         <version>2.1.6.RELEASE</version>
61     </parent>
62     <dependencyManagement>
63         <dependencies>
64             <dependency>
65                 <groupId>org.springframework.boot</groupId>
66                 <artifactId>spring-boot-starter</artifactId>
67             </dependency>
68         </dependencies>
69     </dependencyManagement>
70     <dependencies>
71         <!-- Get the dependencies of a web application -->
72         <dependency>
73             <groupId>org.springframework.boot</groupId>
74             <artifactId>spring-boot-starter-web</artifactId>
75             <version>2.1.6.RELEASE</version>
76         </dependency>
77         <dependency>
78             <groupId>com.fasterxml.jackson.core</groupId>
79             <artifactId>jackson-databind</artifactId>
80             <version>2.9.8</version>
81         </dependency>
82         <dependency>
83             <groupId>com.fasterxml.jackson.core</groupId>
84             <artifactId>jackson-core</artifactId>
85             <version>2.9.8</version>
86         </dependency>
87         <dependency>
88             <groupId>com.fasterxml.jackson.core</groupId>
89             <artifactId>jackson-annotations</artifactId>
90             <version>2.9.8</version>
91         </dependency>
92         <dependency>
93             <groupId>com.google.guava</groupId>
94             <artifactId>guava</artifactId>
95             <version>26.0-jre</version>
96         </dependency>
97         <dependency>
98             <groupId>io.springfox</groupId>
99             <artifactId>springfox-swagger2</artifactId>
100             <version>2.9.2</version>
101             <scope>compile</scope>
102             <exclusions>
103                 <exclusion>
104                     <groupId>com.google.guava</groupId>
105                     <artifactId>guava</artifactId>
106                 </exclusion>
107             </exclusions>
108         </dependency>
109         <dependency>
110             <groupId>io.springfox</groupId>
111             <artifactId>springfox-swagger-ui</artifactId>
112             <version>2.7.0</version>
113             <scope>compile</scope>
114         </dependency>
115         <dependency>
116             <groupId>org.apache.httpcomponents</groupId>
117             <artifactId>httpclient</artifactId>
118             <version>4.5.10</version>
119             <exclusions>
120                 <exclusion>
121                     <groupId>commons-codec</groupId>
122                     <artifactId>commons-codec</artifactId>
123                 </exclusion>
124             </exclusions>
125         </dependency>
126         <dependency>
127             <groupId>commons-codec</groupId>
128             <artifactId>commons-codec</artifactId>
129             <version>1.13</version>
130         </dependency>
131     </dependencies>
132     <build>
133         <plugins>
134             <!-- Spring Boot Maven Support -->
135             <plugin>
136                 <groupId>org.springframework.boot</groupId>
137                 <artifactId>spring-boot-maven-plugin</artifactId>
138             </plugin>
139         </plugins>
140     </build>
141 </project>