Adding infrastructure for sdnc simulator
[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>sdc-simulator</module>
21         <module>aai-simulator</module>
22         <module>sdnc-simulator</module>
23         <module>package</module>
24     </modules>
25
26     <dependencyManagement>
27         <dependencies>
28             <dependency>
29                 <groupId>org.springframework.boot</groupId>
30                 <artifactId>spring-boot-starter-parent</artifactId>
31                 <version>2.0.5.RELEASE</version>
32                 <type>pom</type>
33                 <scope>import</scope>
34             </dependency>
35         </dependencies>
36     </dependencyManagement>
37     <dependencies>
38         <dependency>
39             <groupId>org.springframework.boot</groupId>
40             <artifactId>spring-boot-starter-web</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.springframework.boot</groupId>
44             <artifactId>spring-boot-starter-actuator</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.springframework.boot</groupId>
48             <artifactId>spring-boot-starter-tomcat</artifactId>
49             <scope>compile</scope>
50         </dependency>
51         <dependency>
52             <groupId>org.springframework.boot</groupId>
53             <artifactId>spring-boot-starter-test</artifactId>
54             <scope>test</scope>
55         </dependency>
56         <dependency>
57             <groupId>org.springframework.boot</groupId>
58             <artifactId>spring-boot-starter-aop</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>javax.ws.rs</groupId>
62             <artifactId>javax.ws.rs-api</artifactId>
63             <version>${jax.ws.rs}</version>
64         </dependency>
65     </dependencies>
66 </project>