blob: 52fb9b89de6e58df1d0e02e9b59e2d081a456f02 [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>
31 <version>1.6.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>
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>
60 <version>1.4.5.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 </dependency>
76 <dependency>
77 <groupId>com.fasterxml.jackson.core</groupId>
78 <artifactId>jackson-databind</artifactId>
79 </dependency>
80 <dependency>
81 <groupId>com.fasterxml.jackson.core</groupId>
82 <artifactId>jackson-core</artifactId>
83 </dependency>
84 <dependency>
85 <groupId>com.fasterxml.jackson.core</groupId>
86 <artifactId>jackson-annotations</artifactId>
87 </dependency>
88 <dependency>
89 <groupId>io.springfox</groupId>
90 <artifactId>springfox-swagger2</artifactId>
91 <version>2.7.0</version>
92 <scope>compile</scope>
93 </dependency>
94 <dependency>
95 <groupId>io.springfox</groupId>
96 <artifactId>springfox-swagger-ui</artifactId>
97 <version>2.7.0</version>
98 <scope>compile</scope>
99 </dependency>
100 <dependency>
101 <groupId>org.apache.httpcomponents</groupId>
102 <artifactId>httpclient</artifactId>
103 <version>4.5</version>
104 </dependency>
105 </dependencies>
106 <build>
107 <plugins>
Patrick Brady2c5cd482018-05-16 14:22:52 -0700108 <!--maven staging plugin -->
109 <plugin>
110 <groupId>org.sonatype.plugins</groupId>
111 <artifactId>nexus-staging-maven-plugin</artifactId>
112 <version>1.6.7</version>
113 <extensions>true</extensions>
114 <configuration>
115 <nexusUrl>${onap.nexus.url}</nexusUrl>
116 <stagingProfileId>176c31dfe190a</stagingProfileId>
117 <serverId>ecomp-staging</serverId>
118 </configuration>
119 </plugin>
Kumar, Amaresh (ak583p)4d2e2962018-05-10 14:35:25 +0530120 <!-- Spring Boot Maven Support -->
121 <plugin>
122 <groupId>org.springframework.boot</groupId>
123 <artifactId>spring-boot-maven-plugin</artifactId>
124 </plugin>
125 </plugins>
126 </build>
127</project>