Merge "INT:1183 fix csit for sdnc_netconf_tls_post_deploy"
[integration/csit.git] / plans / so / integration-etsi-testing / so-simulators / 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
5     <groupId>org.onap.so.simulators</groupId>
6     <artifactId>so-simulators</artifactId>
7
8     <packaging>pom</packaging>
9     <name>${project.artifactId}</name>
10     <version>1.0-SNAPSHOT</version>
11
12     <properties>
13         <jax.ws.rs>2.1</jax.ws.rs>
14         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15         <maven.compiler.source>1.8</maven.compiler.source>
16         <maven.compiler.target>1.8</maven.compiler.target>
17     </properties>
18
19     <modules>
20         <module>common</module>
21         <module>sdc-simulator</module>
22         <module>aai-simulator</module>
23         <module>sdnc-simulator</module>
24         <module>package</module>
25     </modules>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>org.springframework.boot</groupId>
31                 <artifactId>spring-boot-starter-parent</artifactId>
32                 <version>2.0.5.RELEASE</version>
33                 <type>pom</type>
34                 <scope>import</scope>
35             </dependency>
36         </dependencies>
37     </dependencyManagement>
38     <dependencies>
39         <dependency>
40             <groupId>org.springframework.boot</groupId>
41             <artifactId>spring-boot-starter-web</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.springframework.boot</groupId>
45             <artifactId>spring-boot-starter-actuator</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.springframework.boot</groupId>
49             <artifactId>spring-boot-starter-tomcat</artifactId>
50             <scope>compile</scope>
51         </dependency>
52         <dependency>
53             <groupId>org.springframework.boot</groupId>
54             <artifactId>spring-boot-starter-test</artifactId>
55             <scope>test</scope>
56         </dependency>
57         <dependency>
58             <groupId>org.springframework.boot</groupId>
59             <artifactId>spring-boot-starter-aop</artifactId>
60         </dependency>
61         <dependency>
62             <groupId>javax.ws.rs</groupId>
63             <artifactId>javax.ws.rs-api</artifactId>
64             <version>${jax.ws.rs}</version>
65         </dependency>
66     </dependencies>
67 </project>