William Kurkian | bde6fc9 | 2018-07-13 17:19:58 -0400 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
William Kurkian | 1bedb41 | 2018-07-19 12:55:41 -0400 | [diff] [blame] | 3 | ~ Copyright 2018- Cisco |
| 4 | ~ |
| 5 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ~ you may not use this file except in compliance with the License. |
| 7 | ~ You may obtain a copy of the License at |
| 8 | ~ |
| 9 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | ~ |
| 11 | ~ Unless required by applicable law or agreed to in writing, software |
| 12 | ~ distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ~ See the License for the specific language governing permissions and |
| 15 | ~ limitations under the License. |
| 16 | --> |
William Kurkian | bde6fc9 | 2018-07-13 17:19:58 -0400 | [diff] [blame] | 17 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 18 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 19 | <modelVersion>4.0.0</modelVersion> |
| 20 | |
| 21 | <groupId>com.osam</groupId> |
| 22 | <artifactId>ves-agent</artifactId> |
| 23 | <version>0.1.0</version> |
| 24 | <parent> |
| 25 | <groupId>org.springframework.boot</groupId> |
| 26 | <artifactId>spring-boot-starter-parent</artifactId> |
| 27 | <version>2.0.2.RELEASE</version> |
| 28 | </parent> |
| 29 | |
| 30 | <properties> |
| 31 | <java.version>1.8</java.version> |
William Kurkian | 1bedb41 | 2018-07-19 12:55:41 -0400 | [diff] [blame] | 32 | <docker.image.prefix>osam</docker.image.prefix> |
William Kurkian | bde6fc9 | 2018-07-13 17:19:58 -0400 | [diff] [blame] | 33 | </properties> |
| 34 | |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <groupId>org.springframework.boot</groupId> |
| 38 | <artifactId>spring-boot-starter-web</artifactId> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>org.springframework.boot</groupId> |
| 42 | <artifactId>spring-boot-starter-test</artifactId> |
| 43 | <scope>test</scope> |
| 44 | </dependency> |
William Kurkian | 1bedb41 | 2018-07-19 12:55:41 -0400 | [diff] [blame] | 45 | <dependency> |
| 46 | <groupId>org.apache.kafka</groupId> |
| 47 | <artifactId>kafka-clients</artifactId> |
| 48 | <version>1.1.0</version> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.onap.vnfsdk.ves-agent</groupId> |
| 52 | <artifactId>evel_javalib2</artifactId> |
| 53 | <version>1.1.0</version> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>com.google.code.gson</groupId> |
| 57 | <artifactId>gson</artifactId> |
| 58 | <version>2.8.5</version> |
| 59 | <scope>compile</scope> |
| 60 | </dependency> |
William Kurkian | bde6fc9 | 2018-07-13 17:19:58 -0400 | [diff] [blame] | 61 | </dependencies> |
| 62 | |
| 63 | |
| 64 | <build> |
| 65 | <plugins> |
| 66 | <plugin> |
| 67 | <groupId>org.springframework.boot</groupId> |
| 68 | <artifactId>spring-boot-maven-plugin</artifactId> |
William Kurkian | 1bedb41 | 2018-07-19 12:55:41 -0400 | [diff] [blame] | 69 | </plugin> |
| 70 | <plugin> |
| 71 | <groupId>com.spotify</groupId> |
| 72 | <artifactId>dockerfile-maven-plugin</artifactId> |
| 73 | <version>1.3.6</version> |
| 74 | <configuration> |
| 75 | <repository>${docker.image.prefix}/${project.artifactId}</repository> |
| 76 | <buildArgs> |
| 77 | <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE> |
| 78 | <PROPERTIES_FILE>config/config.properties</PROPERTIES_FILE> |
| 79 | </buildArgs> |
| 80 | </configuration> |
| 81 | </plugin> |
William Kurkian | bde6fc9 | 2018-07-13 17:19:58 -0400 | [diff] [blame] | 82 | </plugins> |
| 83 | </build> |
| 84 | </project> |