Adding Some Files and TestCases in 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
67 <dependency>
68     <groupId>hsqldb</groupId>
69     <artifactId>hsqldb</artifactId>
70     <version>1.8.0.10</version>
71     <scope>test</scope>
72 </dependency>
73
74 <!-- https://mvnrepository.com/artifact/xalan/xalan -->
75 <dependency>
76     <groupId>xalan</groupId>
77     <artifactId>xalan</artifactId>
78     <version>2.7.2</version>
79 </dependency>
80
81 <!-- https://mvnrepository.com/artifact/xerces/xercesImpl -->
82 <dependency>
83     <groupId>xerces</groupId>
84     <artifactId>xercesImpl</artifactId>
85     <version>2.11.0-atlassian-01</version>
86 </dependency>
87
88 <!-- https://mvnrepository.com/artifact/com.thoughtworks.xstream/xstream -->
89 <dependency>
90     <groupId>com.thoughtworks.xstream</groupId>
91     <artifactId>xstream</artifactId>
92     <version>1.4.10</version>
93 </dependency> 
94 <!-- https://mvnrepository.com/artifact/xml-apis/xml-apis -->
95 <dependency>
96     <groupId>xml-apis</groupId>
97     <artifactId>xml-apis</artifactId>
98     <version>1.4.01</version>
99 </dependency>
100
101
102
103         </dependencies>
104
105         <properties>
106                 <java.version>1.8</java.version>
107         </properties>
108
109
110         <build>
111                 <plugins>
112                         <plugin>
113                                 <groupId>org.springframework.boot</groupId>
114                                 <artifactId>spring-boot-maven-plugin</artifactId>
115                         </plugin>
116                 </plugins>
117         </build>
118
119         <repositories>
120                 <repository>
121                         <id>spring-releases</id>
122                         <url>https://repo.spring.io/libs-release</url>
123                 </repository>
124         </repositories>
125         <pluginRepositories>
126                 <pluginRepository>
127                         <id>spring-releases</id>
128                         <url>https://repo.spring.io/libs-release</url>
129                 </pluginRepository>
130         </pluginRepositories>
131 </project>