url correction and improve API doc
[so.git] / vnfm-simulator / vnfm-service / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0"
2     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     <parent>
6         <groupId>org.onap.so.vnfm</groupId>
7         <artifactId>vnfm-simulator</artifactId>
8         <version>1.4.0-SNAPSHOT</version>
9     </parent>
10     <artifactId>vnfm-service</artifactId>
11     <name>${project.artifactId}</name>
12
13     <properties>
14         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15         <java.version>1.8</java.version>
16         <okhttp-version>2.7.5</okhttp-version>
17         <gson-version>2.8.1</gson-version>
18     </properties>
19     <dependencies>
20         <dependency>
21             <groupId>org.onap.so.adapters</groupId>
22             <artifactId>mso-vnfm-adapter-ext-clients</artifactId>
23             <version>${project.version}</version>
24         </dependency>
25         <dependency>
26             <groupId>org.springframework.boot</groupId>
27             <artifactId>spring-boot-starter-web</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.springframework.boot</groupId>
31             <artifactId>spring-boot-starter-data-jpa</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>org.springframework.boot</groupId>
35             <artifactId>spring-boot-starter-actuator</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>org.springframework.boot</groupId>
39             <artifactId>spring-boot-starter-test</artifactId>
40             <scope>test</scope>
41         </dependency>
42         <dependency>
43             <groupId>org.springframework.boot</groupId>
44             <artifactId>spring-boot-devtools</artifactId>
45             <scope>runtime</scope>
46         </dependency>
47         <dependency>
48             <groupId>junit</groupId>
49             <artifactId>junit</artifactId>
50             <scope>test</scope>
51         </dependency>
52         <dependency>
53             <groupId>io.swagger</groupId>
54             <artifactId>swagger-jaxrs</artifactId>
55             <version>1.5.0</version>
56         </dependency>
57         <dependency>
58             <groupId>org.apache.directory.studio</groupId>
59             <artifactId>org.apache.commons.io</artifactId>
60             <version>2.4</version>
61         </dependency>
62         <dependency>
63             <groupId>com.googlecode.json-simple</groupId>
64             <artifactId>json-simple</artifactId>
65             <version>1.1.1</version>
66         </dependency>
67
68         <dependency>
69             <groupId>io.springfox</groupId>
70             <artifactId>springfox-swagger-ui</artifactId>
71             <version>2.6.1</version>
72             <scope>compile</scope>
73         </dependency>
74         <dependency>
75             <groupId>io.springfox</groupId>
76             <artifactId>springfox-swagger2</artifactId>
77             <version>2.6.1</version>
78             <scope>compile</scope>
79         </dependency>
80         <dependency>
81             <groupId>com.fasterxml.jackson.core</groupId>
82             <artifactId>jackson-databind</artifactId>
83             <version>2.9.8</version>
84         </dependency>
85         <dependency>
86             <groupId>com.h2database</groupId>
87             <artifactId>h2</artifactId>
88         </dependency>
89         <!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
90         <dependency>
91             <groupId>commons-beanutils</groupId>
92             <artifactId>commons-beanutils</artifactId>
93             <version>1.9.3</version>
94         </dependency>
95         <dependency>
96             <groupId>org.modelmapper</groupId>
97             <artifactId>modelmapper</artifactId>
98             <version>2.3.0</version>
99         </dependency>
100         <dependency>
101             <groupId>com.squareup.okio</groupId>
102             <artifactId>okio</artifactId>
103             <version>1.13.0</version>
104         </dependency>
105         <dependency>
106             <groupId>com.squareup.okhttp</groupId>
107             <artifactId>okhttp</artifactId>
108             <version>${okhttp-version}</version>
109         </dependency>
110         <dependency>
111             <groupId>com.squareup.okhttp</groupId>
112             <artifactId>logging-interceptor</artifactId>
113             <version>${okhttp-version}</version>
114         </dependency>
115         <dependency>
116             <groupId>com.google.code.gson</groupId>
117             <artifactId>gson</artifactId>
118             <version>${gson-version}</version>
119         </dependency>
120         <dependency>
121             <groupId>org.onap.so</groupId>
122             <artifactId>common</artifactId>
123             <version>${project.version}</version>
124         </dependency>
125     </dependencies>
126     <build>
127         <plugins>
128             <plugin>
129                 <groupId>org.springframework.boot</groupId>
130                 <artifactId>spring-boot-maven-plugin</artifactId>
131                 <version>${springboot.version}</version>
132                 <configuration>
133                     <mainClass>org.onap.svnfm.simulator.config.SvnfmApplication</mainClass>
134                 </configuration>
135                 <executions>
136                     <execution>
137                         <goals>
138                             <goal>repackage</goal>
139                         </goals>
140                     </execution>
141                 </executions>
142             </plugin>
143             <plugin>
144                 <groupId>org.springframework.boot</groupId>
145                 <artifactId>spring-boot-maven-plugin</artifactId>
146             </plugin>
147         </plugins>
148     </build>
149 </project>