Fix groupIds
[sdnc/oam.git] / configbackuprestore / vnfconfigbackupservice / pom.xml
1 <?xml version="1.0"?>
2 <project
3         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4         xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5         
6         <modelVersion>4.0.0</modelVersion>
7         
8         <parent>
9                 <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
10                 <artifactId>configbackuprestore</artifactId>
11                 <version>1.4.0-SNAPSHOT</version>
12         </parent>
13         
14         <groupId>com.onap.sdnc.oam.vnfbackup</groupId>
15         <artifactId>vnfconfigbackupservice</artifactId>
16         <version>1.4.0-SNAPSHOT</version>
17         <name>sdnc-oam :: vnfbackup :: vnfconfigbackupservice</name>
18         <url>http://maven.apache.org</url>
19         
20         <dependencies>
21
22                 <dependency>
23                         <groupId>org.jmockit</groupId>
24                         <artifactId>jmockit</artifactId>
25                         <version>1.19</version>
26                         <scope>test</scope>
27                 </dependency>
28
29                 <dependency>
30                         <groupId>org.jmockit</groupId>
31                         <artifactId>jmockit-coverage</artifactId>
32                         <version>1.19</version>
33                         <scope>test</scope>
34                 </dependency>
35                 
36                 <dependency>
37                         <groupId>junit</groupId>
38                         <artifactId>junit</artifactId>
39                         <version>4.9</version>
40                         <scope>test</scope>
41                 </dependency>
42
43                 <dependency>
44                         <groupId>javax.servlet</groupId>
45                         <artifactId>jstl</artifactId>
46                         <scope>provided</scope>
47                 </dependency>
48
49                 <dependency>
50                         <groupId>org.mariadb.jdbc</groupId>
51                         <artifactId>mariadb-java-client</artifactId>
52                         <version>1.1.9</version>
53                 </dependency>
54                 
55                 <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
56                 <dependency>
57                         <groupId>commons-codec</groupId>
58                         <artifactId>commons-codec</artifactId>
59                         <version>1.9</version>
60                 </dependency>
61
62                 <dependency>
63                         <groupId>org.springframework.boot</groupId>
64                         <artifactId>spring-boot-starter-web</artifactId>
65                         <version>1.5.4.RELEASE</version>
66                 </dependency>
67
68                 <dependency>
69                         <groupId>org.springframework</groupId>
70                         <artifactId>spring-context</artifactId>
71                         <version>4.3.9.RELEASE</version>
72                 </dependency>
73
74                 <dependency>
75                         <groupId>org.springframework.boot</groupId>
76                         <artifactId>spring-boot-starter-tomcat</artifactId>
77                         <scope>provided</scope>
78                 </dependency>
79
80                 <dependency>
81                         <groupId>org.apache.tomcat.embed</groupId>
82                         <artifactId>tomcat-embed-jasper</artifactId>
83                         <scope>provided</scope>
84                 </dependency>
85
86                 <dependency>
87                         <groupId>org.springframework.boot</groupId>
88                         <artifactId>spring-boot-devtools</artifactId>
89                         <optional>true</optional>
90                 </dependency>
91
92                 <dependency>
93                         <groupId>org.springframework.boot</groupId>
94                         <artifactId>spring-boot-starter-test</artifactId>
95                         <scope>test</scope>
96                         <version>1.5.3.RELEASE</version>
97                 </dependency>
98
99                 <dependency>
100                         <groupId>org.springframework.boot</groupId>
101                         <artifactId>spring-boot-starter-data-jpa</artifactId>
102                 </dependency>
103
104                 <!-- Add Log4j2 Dependency -->
105                 <dependency>
106                         <groupId>org.springframework.boot</groupId>
107                         <artifactId>spring-boot-starter-log4j2</artifactId>
108                 </dependency>
109
110                 <dependency>
111                         <groupId>org.json</groupId>
112                         <artifactId>json</artifactId>
113                         <version>20180130</version>
114                 </dependency>
115                 
116                 <!-- https://mvnrepository.com/artifact/com.fasterxml/jackson-xml-databind -->
117                 <dependency>
118                         <groupId>com.fasterxml</groupId>
119                         <artifactId>jackson-xml-databind</artifactId>
120                         <version>0.6.2</version>
121                 </dependency>
122
123         </dependencies>
124
125         <build>
126                 <plugins>
127                         <plugin>
128                                 <groupId>org.apache.maven.plugins</groupId>
129                                 <artifactId>maven-surefire-plugin</artifactId>
130                                 <version>2.21.0</version>
131                                 <configuration>
132                                         <argLine>-XX:+StartAttachListener</argLine>
133                                 </configuration>
134                         </plugin>
135                 </plugins>
136         </build>
137 </project>