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