blob: c492835122b4ba7234496e4e12da6db34c416f81 [file] [log] [blame]
William Kurkianbde6fc92018-07-13 17:19:58 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
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 -->
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>
32 <docker.image.prefix>osam</docker.image.prefix>
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>
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 </dependencies>
56
57
58 <build>
59 <plugins>
60 <plugin>
61 <groupId>org.springframework.boot</groupId>
62 <artifactId>spring-boot-maven-plugin</artifactId>
63 </plugin>
64 <plugin>
65 <groupId>com.spotify</groupId>
66 <artifactId>dockerfile-maven-plugin</artifactId>
67 <version>1.3.6</version>
68 <configuration>
69 <repository>${docker.image.prefix}/${project.artifactId}</repository>
70 <buildArgs>
71 <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
72 <PROPERTIES_FILE>config/config.properties</PROPERTIES_FILE>
73 </buildArgs>
74 </configuration>
75 </plugin>
76 </plugins>
77 </build>
78</project>