Merge "link the term memoization"
[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.5.0-SNAPSHOT</version>
12         </parent>
13         
14         <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
15         <artifactId>vnfconfigbackupservice</artifactId>
16         <version>1.5.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.onap.sdnc.oam.vnfbackup</groupId>
24                         <artifactId>getBackupVnfDetailService</artifactId>
25                         <version>1.5.0-SNAPSHOT</version>
26                 </dependency>
27                 
28                 <dependency>
29                         <groupId>org.onap.sdnc.oam.vnfbackup</groupId>
30                         <artifactId>vnfconfigreportsservice</artifactId>
31                         <version>1.5.0-SNAPSHOT</version>
32                 </dependency>
33                 
34                 <dependency>
35                         <groupId>org.jmockit</groupId>
36                         <artifactId>jmockit</artifactId>
37                         <version>1.19</version>
38                         <scope>test</scope>
39                 </dependency>
40
41                 <dependency>
42                         <groupId>org.jmockit</groupId>
43                         <artifactId>jmockit-coverage</artifactId>
44                         <version>1.19</version>
45                         <scope>test</scope>
46                 </dependency>
47                 
48                 <dependency>
49                         <groupId>junit</groupId>
50                         <artifactId>junit</artifactId>
51                         <version>4.9</version>
52                         <scope>test</scope>
53                 </dependency>
54
55                 <dependency>
56                         <groupId>javax.servlet</groupId>
57                         <artifactId>jstl</artifactId>
58                         <scope>provided</scope>
59                 </dependency>
60
61                 <dependency>
62                         <groupId>org.mariadb.jdbc</groupId>
63                         <artifactId>mariadb-java-client</artifactId>
64                         <version>1.1.9</version>
65                 </dependency>
66                 
67                 <!-- https://mvnrepository.com/artifact/commons-codec/commons-codec -->
68                 <dependency>
69                         <groupId>commons-codec</groupId>
70                         <artifactId>commons-codec</artifactId>
71                         <version>1.9</version>
72                 </dependency>
73
74                 <dependency>
75                         <groupId>org.springframework.boot</groupId>
76                         <artifactId>spring-boot-starter-web</artifactId>
77                         <version>1.5.4.RELEASE</version>
78                 </dependency>
79
80                 <dependency>
81                         <groupId>org.springframework</groupId>
82                         <artifactId>spring-context</artifactId>
83                         <version>4.3.9.RELEASE</version>
84                 </dependency>
85
86                 <dependency>
87                         <groupId>org.springframework.boot</groupId>
88                         <artifactId>spring-boot-starter-tomcat</artifactId>
89                         <scope>provided</scope>
90                 </dependency>
91
92                 <dependency>
93                         <groupId>org.apache.tomcat.embed</groupId>
94                         <artifactId>tomcat-embed-jasper</artifactId>
95                         <scope>provided</scope>
96                 </dependency>
97
98                 <dependency>
99                         <groupId>org.springframework.boot</groupId>
100                         <artifactId>spring-boot-devtools</artifactId>
101                         <optional>true</optional>
102                 </dependency>
103
104                 <dependency>
105                         <groupId>org.springframework.boot</groupId>
106                         <artifactId>spring-boot-starter-test</artifactId>
107                         <scope>test</scope>
108                         <version>1.5.3.RELEASE</version>
109                 </dependency>
110
111                 <dependency>
112                         <groupId>org.springframework.boot</groupId>
113                         <artifactId>spring-boot-starter-data-jpa</artifactId>
114                 </dependency>
115
116                 <!-- Add Log4j2 Dependency -->
117                 <dependency>
118                         <groupId>org.springframework.boot</groupId>
119                         <artifactId>spring-boot-starter-log4j2</artifactId>
120                 </dependency>
121
122                 <dependency>
123                         <groupId>org.json</groupId>
124                         <artifactId>json</artifactId>
125                         <version>20180130</version>
126                 </dependency>
127                 
128                 <!-- https://mvnrepository.com/artifact/com.fasterxml/jackson-xml-databind -->
129                 <dependency>
130                         <groupId>com.fasterxml</groupId>
131                         <artifactId>jackson-xml-databind</artifactId>
132                         <version>0.6.2</version>
133                 </dependency>
134                 
135                 <dependency>
136                 <groupId>org.webjars</groupId>
137                         <artifactId>bootstrap</artifactId>
138                         <version>3.3.7</version>
139                 </dependency>
140
141                 <dependency>
142                 <groupId>org.webjars</groupId>
143                         <artifactId>bootstrap-datepicker</artifactId>
144                         <version>1.0.1</version>
145                 </dependency>
146                 
147                 <dependency>
148                         <groupId>org.webjars.bower</groupId>
149                         <artifactId>angular-object-diff</artifactId>
150                         <version>1.0.1</version>
151                 </dependency>
152
153         </dependencies>
154
155         <build>
156                 <plugins>
157
158                         <plugin>
159                                 <groupId>org.springframework.boot</groupId>
160                                 <artifactId>spring-boot-maven-plugin</artifactId>
161                         </plugin>
162
163                         <plugin>
164                                 <groupId>org.apache.maven.plugins</groupId>
165                                 <artifactId>maven-surefire-plugin</artifactId>
166                                 <version>2.21.0</version>
167                                 <configuration>
168                                         <argLine>-XX:+StartAttachListener</argLine>
169                                 </configuration>
170                         </plugin>
171                 </plugins>
172         </build>
173 </project>