3f4f4512b3edabf874427a66a70887eff90c4e1a
[so.git] / vnfm-simulator / vnfm-service / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.onap.so.vnfm</groupId>
6     <artifactId>vnfm-simulator</artifactId>
7     <version>1.4.0-SNAPSHOT</version>
8   </parent>
9   <artifactId>vnfm-service</artifactId>
10   <name>${project.artifactId}</name>
11
12   <properties>
13     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14     <java.version>1.8</java.version>
15   </properties>
16   <dependencies>
17     <dependency>
18       <groupId>org.onap.so.vnfm</groupId>
19       <artifactId>vnfm-api</artifactId>
20       <version>${project.version}</version>
21     </dependency>
22     <dependency>
23       <groupId>org.springframework.boot</groupId>
24       <artifactId>spring-boot-starter-web</artifactId>
25     </dependency>
26     <dependency>
27       <groupId>org.springframework.boot</groupId>
28       <artifactId>spring-boot-starter-data-jpa</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>org.springframework.boot</groupId>
32       <artifactId>spring-boot-starter-actuator</artifactId>
33     </dependency>
34     <dependency>
35       <groupId>org.springframework.boot</groupId>
36       <artifactId>spring-boot-starter-test</artifactId>
37       <scope>test</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.springframework.boot</groupId>
41       <artifactId>spring-boot-devtools</artifactId>
42       <scope>runtime</scope>
43     </dependency>
44     <dependency>
45       <groupId>junit</groupId>
46       <artifactId>junit</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>io.swagger</groupId>
51       <artifactId>swagger-jaxrs</artifactId>
52       <version>1.5.0</version>
53     </dependency>
54     <dependency>
55       <groupId>org.apache.directory.studio</groupId>
56       <artifactId>org.apache.commons.io</artifactId>
57       <version>2.4</version>
58     </dependency>
59     <dependency>
60       <groupId>com.googlecode.json-simple</groupId>
61       <artifactId>json-simple</artifactId>
62       <version>1.1.1</version>
63     </dependency>
64
65     <dependency>
66       <groupId>io.springfox</groupId>
67       <artifactId>springfox-swagger-ui</artifactId>
68       <version>2.6.1</version>
69       <scope>compile</scope>
70     </dependency>
71     <dependency>
72       <groupId>io.springfox</groupId>
73       <artifactId>springfox-swagger2</artifactId>
74       <version>2.6.1</version>
75       <scope>compile</scope>
76     </dependency>
77     <dependency>
78       <groupId>com.fasterxml.jackson.core</groupId>
79       <artifactId>jackson-databind</artifactId>
80       <version>2.9.8</version>
81     </dependency>
82     <dependency>
83       <groupId>com.h2database</groupId>
84       <artifactId>h2</artifactId>
85     </dependency>
86     <!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
87     <dependency>
88       <groupId>commons-beanutils</groupId>
89       <artifactId>commons-beanutils</artifactId>
90       <version>1.9.3</version>
91     </dependency>
92   </dependencies>
93   <build>
94     <plugins>
95       <plugin>
96         <groupId>org.springframework.boot</groupId>
97         <artifactId>spring-boot-maven-plugin</artifactId>
98         <version>${springboot.version}</version>
99         <configuration>
100           <mainClass>org.onap.svnfm.simulator.config.SvnfmApplication</mainClass>
101         </configuration>
102         <executions>
103           <execution>
104             <goals>
105               <goal>repackage</goal>
106             </goals>
107           </execution>
108         </executions>
109       </plugin>
110       <plugin>
111         <groupId>org.springframework.boot</groupId>
112         <artifactId>spring-boot-maven-plugin</artifactId>
113       </plugin>
114     </plugins>
115   </build>
116 </project>