Kumar, Amaresh (ak583p) | 4d2e296 | 2018-05-10 14:35:25 +0530 | [diff] [blame] | 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> |
Patrick Brady | 54a9d52 | 2018-11-12 13:59:01 -0800 | [diff] [blame^] | 31 | <version>1.5.0-SNAPSHOT</version> |
Kumar, Amaresh (ak583p) | 4d2e296 | 2018-05-10 14:35:25 +0530 | [diff] [blame] | 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 Brady | b97a345 | 2018-05-16 14:50:14 -0700 | [diff] [blame] | 37 | <onap.nexus.url>https://nexus.onap.org</onap.nexus.url> |
Kumar, Amaresh (ak583p) | 4d2e296 | 2018-05-10 14:35:25 +0530 | [diff] [blame] | 38 | </properties> |
Patrick Brady | b97a345 | 2018-05-16 14:50:14 -0700 | [diff] [blame] | 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 | |
Kumar, Amaresh (ak583p) | 4d2e296 | 2018-05-10 14:35:25 +0530 | [diff] [blame] | 56 | <!-- Inherit defaults from Spring Boot --> |
| 57 | <parent> |
| 58 | <groupId>org.springframework.boot</groupId> |
| 59 | <artifactId>spring-boot-starter-parent</artifactId> |
Taka Cho | 1a27066 | 2018-08-30 14:31:51 -0400 | [diff] [blame] | 60 | <version>2.0.4.RELEASE</version> |
Kumar, Amaresh (ak583p) | 4d2e296 | 2018-05-10 14:35:25 +0530 | [diff] [blame] | 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> |
Taka Cho | b5da8b6 | 2018-10-24 10:07:12 -0400 | [diff] [blame] | 75 | <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) | 4d2e296 | 2018-05-10 14:35:25 +0530 | [diff] [blame] | 86 | </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 Cho | ed1bc60 | 2018-09-15 12:30:42 -0400 | [diff] [blame] | 100 | <groupId>com.google.guava</groupId> |
| 101 | <artifactId>guava</artifactId> |
| 102 | <version>26.0-jre</version> |
| 103 | </dependency> |
| 104 | <dependency> |
Kumar, Amaresh (ak583p) | 4d2e296 | 2018-05-10 14:35:25 +0530 | [diff] [blame] | 105 | <groupId>io.springfox</groupId> |
| 106 | <artifactId>springfox-swagger2</artifactId> |
Taka Cho | de4cb25 | 2018-07-17 12:07:42 -0400 | [diff] [blame] | 107 | <version>2.9.2</version> |
Kumar, Amaresh (ak583p) | 4d2e296 | 2018-05-10 14:35:25 +0530 | [diff] [blame] | 108 | <scope>compile</scope> |
Taka Cho | ed1bc60 | 2018-09-15 12:30:42 -0400 | [diff] [blame] | 109 | <exclusions> |
| 110 | <exclusion> |
| 111 | <groupId>com.google.guava</groupId> |
| 112 | <artifactId>guava</artifactId> |
| 113 | </exclusion> |
| 114 | </exclusions> |
Kumar, Amaresh (ak583p) | 4d2e296 | 2018-05-10 14:35:25 +0530 | [diff] [blame] | 115 | </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 Cho | cd7a170 | 2018-07-17 11:57:13 -0400 | [diff] [blame] | 125 | <version>4.5.3</version> |
Kumar, Amaresh (ak583p) | 4d2e296 | 2018-05-10 14:35:25 +0530 | [diff] [blame] | 126 | </dependency> |
| 127 | </dependencies> |
| 128 | <build> |
| 129 | <plugins> |
Patrick Brady | 2c5cd48 | 2018-05-16 14:22:52 -0700 | [diff] [blame] | 130 | <!--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) | 4d2e296 | 2018-05-10 14:35:25 +0530 | [diff] [blame] | 142 | <!-- 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 Brady | c0eb441 | 2018-05-22 11:15:23 -0700 | [diff] [blame] | 149 | </project> |