blob: 0e62cf9dc300cb89361b942711a76ea32ec1b1fa [file] [log] [blame]
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +05301<?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>
Patrick Bradyc754ff72019-09-17 11:08:22 -070031 <version>1.6.3-SNAPSHOT</version>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +053032 <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>
Patrick Bradyb97a3452018-05-16 14:50:14 -070037 <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +053038 </properties>
Patrick Bradyb97a3452018-05-16 14:50:14 -070039
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
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +053056 <!-- Inherit defaults from Spring Boot -->
57 <parent>
58 <groupId>org.springframework.boot</groupId>
59 <artifactId>spring-boot-starter-parent</artifactId>
Taka Chob88899a2019-09-19 15:20:45 -040060 <version>2.1.6.RELEASE</version>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +053061 </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>
Taka Chob88899a2019-09-19 15:20:45 -040075 <version>2.1.6.RELEASE</version>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +053076 </dependency>
77 <dependency>
78 <groupId>com.fasterxml.jackson.core</groupId>
79 <artifactId>jackson-databind</artifactId>
Taka Cho9444b332019-03-15 14:10:08 -040080 <version>2.9.8</version>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +053081 </dependency>
82 <dependency>
83 <groupId>com.fasterxml.jackson.core</groupId>
84 <artifactId>jackson-core</artifactId>
Taka Cho9444b332019-03-15 14:10:08 -040085 <version>2.9.8</version>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +053086 </dependency>
87 <dependency>
88 <groupId>com.fasterxml.jackson.core</groupId>
89 <artifactId>jackson-annotations</artifactId>
Taka Cho9444b332019-03-15 14:10:08 -040090 <version>2.9.8</version>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +053091 </dependency>
92 <dependency>
Taka Choed1bc602018-09-15 12:30:42 -040093 <groupId>com.google.guava</groupId>
94 <artifactId>guava</artifactId>
95 <version>26.0-jre</version>
96 </dependency>
97 <dependency>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +053098 <groupId>io.springfox</groupId>
99 <artifactId>springfox-swagger2</artifactId>
Taka Chode4cb252018-07-17 12:07:42 -0400100 <version>2.9.2</version>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +0530101 <scope>compile</scope>
Taka Choed1bc602018-09-15 12:30:42 -0400102 <exclusions>
103 <exclusion>
104 <groupId>com.google.guava</groupId>
105 <artifactId>guava</artifactId>
106 </exclusion>
107 </exclusions>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +0530108 </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>
Taka Choe03cade2019-09-20 15:49:20 -0400118 <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>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +0530130 </dependency>
131 </dependencies>
132 <build>
133 <plugins>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +0530134 <!-- 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>
Patrick Bradyc0eb4412018-05-22 11:15:23 -0700141</project>