Added UniversalVesAdapter in the Mapper
[dcaegen2/services/mapper.git] / UniversalVesAdapter / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4         <modelVersion>4.0.0</modelVersion>
5
6         <groupId>org.onap.dcaegen2.services.mapper.vesadapter</groupId>
7         <artifactId>UniversalVesAdapter</artifactId>
8         <version>0.0.1</version>
9
10         <parent>
11                 <!-- <groupId>org.springframework.boot</groupId>
12                 <artifactId>spring-boot-starter-parent</artifactId>
13                 <version>2.0.0.RELEASE</version> -->    
14                 <groupId>org.onap.dcaegen2.services.mapper</groupId>
15                 <artifactId>mapper</artifactId>
16                 <version>0.0.1-SNAPSHOT</version>
17         </parent>
18
19         <dependencies>
20                 <dependency>
21                         <groupId>org.milyn</groupId>
22                         <artifactId>milyn-smooks-all</artifactId>
23                         <version>1.7.0</version>
24                         <exclusions>
25                                 <exclusion>
26                                         <groupId>javax.servlet</groupId>
27                                         <artifactId>servlet-api</artifactId>
28                                 </exclusion>
29                         </exclusions>
30                 </dependency>
31                 <dependency>
32                         <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
33                         <artifactId>dmaapClient</artifactId>
34                         <version>1.1.3</version>
35                 </dependency>
36
37
38                 <dependency>
39                         <groupId>org.springframework.boot</groupId>
40                         <artifactId>spring-boot-starter-web</artifactId>
41                             <version>2.0.0.RELEASE</version>
42                 </dependency>
43                 <dependency>
44                         <groupId>org.springframework.boot</groupId>
45                         <artifactId>spring-boot-starter-test</artifactId>
46                             <version>2.0.0.RELEASE</version>
47                         <scope>test</scope>
48                 </dependency>
49                 <dependency>
50                         <groupId>com.jayway.jsonpath</groupId>
51                         <artifactId>json-path</artifactId>
52                         <version>2.4.0</version>
53                         <scope>test</scope>
54                 </dependency>
55                 <dependency>
56                         <groupId>org.springframework.data</groupId>
57                         <artifactId>spring-data-commons</artifactId>
58                          <version>2.0.5.RELEASE</version>
59                 </dependency>
60                 <dependency>
61     <groupId>com.fasterxml.jackson.core</groupId>
62     <artifactId>jackson-databind</artifactId>
63     <version>2.9.4</version>
64 </dependency>
65
66         </dependencies>
67
68         <properties>
69                 <java.version>1.8</java.version>
70         </properties>
71
72
73         <build>
74                 <plugins>
75                         <plugin>
76                                 <groupId>org.springframework.boot</groupId>
77                                 <artifactId>spring-boot-maven-plugin</artifactId>
78                         </plugin>
79                 </plugins>
80         </build>
81
82         <repositories>
83                 <repository>
84                         <id>spring-releases</id>
85                         <url>https://repo.spring.io/libs-release</url>
86                 </repository>
87         </repositories>
88         <pluginRepositories>
89                 <pluginRepository>
90                         <id>spring-releases</id>
91                         <url>https://repo.spring.io/libs-release</url>
92                 </pluginRepository>
93         </pluginRepositories>
94 </project>