Seperating usecase test suite dependencies
[integration/csit.git] / plans / usecases-pnf-sw-upgrade / pnf-sw-upgrade / sorch / simulator / 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     <groupId>org.onap.so.simulators</groupId>
5     <artifactId>simulator</artifactId>
6     <packaging>pom</packaging>
7     <name>${project.artifactId}</name>
8     <version>1.0-SNAPSHOT</version>
9     <properties>
10         <jax.ws.rs>2.1</jax.ws.rs>
11         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
12         <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
13         <maven.compiler.source>1.8</maven.compiler.source>
14         <maven.compiler.target>1.8</maven.compiler.target>
15         <jaxb.version>2.3.0</jaxb.version>
16         <javax.version>1.1.1</javax.version>
17         <java.version>1.8</java.version>
18     </properties>
19     <modules>
20         <module>common</module>
21         <module>aai-simulator</module>
22         <module>package</module>
23     </modules>
24     <dependencyManagement>
25         <dependencies>
26             <dependency>
27                 <groupId>org.springframework.boot</groupId>
28                 <artifactId>spring-boot-starter-parent</artifactId>
29                 <version>2.1.5.RELEASE</version>
30                 <type>pom</type>
31                 <scope>import</scope>
32             </dependency>
33             <dependency>
34                 <groupId>javax.xml.bind</groupId>
35                 <artifactId>jaxb-api</artifactId>
36                 <version>${jaxb.version}</version>
37             </dependency>
38             <dependency>
39                 <groupId>com.sun.xml.bind</groupId>
40                 <artifactId>jaxb-core</artifactId>
41                 <version>${jaxb.version}</version>
42             </dependency>
43             <dependency>
44                 <groupId>com.sun.xml.bind</groupId>
45                 <artifactId>jaxb-impl</artifactId>
46                 <version>${jaxb.version}</version>
47             </dependency>
48             <dependency>
49                 <groupId>javax.activation</groupId>
50                 <artifactId>activation</artifactId>
51                 <version>${javax.version}</version>
52             </dependency>
53         </dependencies>
54     </dependencyManagement>
55     <dependencies>
56         <dependency>
57             <groupId>org.springframework.boot</groupId>
58             <artifactId>spring-boot-starter-web</artifactId>
59         </dependency>
60         <dependency>
61             <groupId>org.springframework.boot</groupId>
62             <artifactId>spring-boot-starter-actuator</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.springframework.boot</groupId>
66             <artifactId>spring-boot-starter-tomcat</artifactId>
67             <scope>compile</scope>
68         </dependency>
69         <dependency>
70             <groupId>org.springframework.boot</groupId>
71             <artifactId>spring-boot-starter-test</artifactId>
72             <scope>test</scope>
73         </dependency>
74         <dependency>
75             <groupId>org.springframework.boot</groupId>
76             <artifactId>spring-boot-starter-aop</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>javax.ws.rs</groupId>
80             <artifactId>javax.ws.rs-api</artifactId>
81             <version>${jax.ws.rs}</version>
82         </dependency>
83     </dependencies>
84 </project>