blob: 400524085fa57a866d4e3b9f153f1dcab5d14552 [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 Brady54a9d522018-11-12 13:59:01 -080031 <version>1.5.0-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 Cho1a270662018-08-30 14:31:51 -040060 <version>2.0.4.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 Chob5da8b62018-10-24 10:07:12 -040075 <exclusions>
76 <exclusion>
77 <groupId>org.springframework</groupId>
78 <artifactId>spring-web</artifactId>
79 </exclusion>
80 </exclusions>
81 </dependency>
82 <dependency>
83 <groupId>org.springframework</groupId>
84 <artifactId>spring-web</artifactId>
85 <version>5.0.10.RELEASE</version>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +053086 </dependency>
87 <dependency>
88 <groupId>com.fasterxml.jackson.core</groupId>
89 <artifactId>jackson-databind</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>com.fasterxml.jackson.core</groupId>
93 <artifactId>jackson-core</artifactId>
94 </dependency>
95 <dependency>
96 <groupId>com.fasterxml.jackson.core</groupId>
97 <artifactId>jackson-annotations</artifactId>
98 </dependency>
99 <dependency>
Taka Choed1bc602018-09-15 12:30:42 -0400100 <groupId>com.google.guava</groupId>
101 <artifactId>guava</artifactId>
102 <version>26.0-jre</version>
103 </dependency>
104 <dependency>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +0530105 <groupId>io.springfox</groupId>
106 <artifactId>springfox-swagger2</artifactId>
Taka Chode4cb252018-07-17 12:07:42 -0400107 <version>2.9.2</version>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +0530108 <scope>compile</scope>
Taka Choed1bc602018-09-15 12:30:42 -0400109 <exclusions>
110 <exclusion>
111 <groupId>com.google.guava</groupId>
112 <artifactId>guava</artifactId>
113 </exclusion>
114 </exclusions>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +0530115 </dependency>
116 <dependency>
117 <groupId>io.springfox</groupId>
118 <artifactId>springfox-swagger-ui</artifactId>
119 <version>2.7.0</version>
120 <scope>compile</scope>
121 </dependency>
122 <dependency>
123 <groupId>org.apache.httpcomponents</groupId>
124 <artifactId>httpclient</artifactId>
Taka Chocd7a1702018-07-17 11:57:13 -0400125 <version>4.5.3</version>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +0530126 </dependency>
127 </dependencies>
128 <build>
129 <plugins>
Patrick Brady2c5cd482018-05-16 14:22:52 -0700130 <!--maven staging plugin -->
131 <plugin>
132 <groupId>org.sonatype.plugins</groupId>
133 <artifactId>nexus-staging-maven-plugin</artifactId>
134 <version>1.6.7</version>
135 <extensions>true</extensions>
136 <configuration>
137 <nexusUrl>${onap.nexus.url}</nexusUrl>
138 <stagingProfileId>176c31dfe190a</stagingProfileId>
139 <serverId>ecomp-staging</serverId>
140 </configuration>
141 </plugin>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +0530142 <!-- Spring Boot Maven Support -->
143 <plugin>
144 <groupId>org.springframework.boot</groupId>
145 <artifactId>spring-boot-maven-plugin</artifactId>
146 </plugin>
147 </plugins>
148 </build>
Patrick Bradyc0eb4412018-05-22 11:15:23 -0700149</project>