blob: 72236c4fb6b0c6a13ff7728e84ba8fb2cf1c02b0 [file] [log] [blame]
William Kurkianbde6fc92018-07-13 17:19:58 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
William Kurkian1bedb412018-07-19 12:55:41 -04003~ 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 Kurkianbde6fc92018-07-13 17:19:58 -040017<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 Kurkian1bedb412018-07-19 12:55:41 -040032 <docker.image.prefix>osam</docker.image.prefix>
William Kurkianbde6fc92018-07-13 17:19:58 -040033 </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 Kurkian1bedb412018-07-19 12:55:41 -040045 <dependency>
46 <groupId>org.apache.kafka</groupId>
47 <artifactId>kafka-clients</artifactId>
48 <version>1.1.0</version>
49 </dependency>
50 <dependency>
William Kurkian1bedb412018-07-19 12:55:41 -040051 <groupId>com.google.code.gson</groupId>
52 <artifactId>gson</artifactId>
53 <version>2.8.5</version>
54 <scope>compile</scope>
55 </dependency>
William Kurkian9600b5c2018-09-20 16:05:59 -040056 <dependency>
57 <groupId>org.apache.httpcomponents</groupId>
58 <artifactId>httpclient</artifactId>
59 <version>4.5.6</version>
60 </dependency>
William Kurkianbde6fc92018-07-13 17:19:58 -040061 </dependencies>
62
63
64 <build>
65 <plugins>
66 <plugin>
67 <groupId>org.springframework.boot</groupId>
68 <artifactId>spring-boot-maven-plugin</artifactId>
William Kurkian1bedb412018-07-19 12:55:41 -040069 </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 Kurkianbde6fc92018-07-13 17:19:58 -040082 </plugins>
83 </build>
84</project>