blob: c18e1709edf4764d8384ab63372e60c659e6b9b6 [file] [log] [blame]
waqas.ikramb01df8b2019-07-09 16:14:17 +00001<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>
waqas.ikram0a33a292019-07-23 12:39:15 +000021 <module>aai-simulator</module>
waqas.ikramb01df8b2019-07-09 16:14:17 +000022 <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>
eHanana60b0922019-07-16 15:27:06 +000048 <scope>compile</scope>
waqas.ikramb01df8b2019-07-09 16:14:17 +000049 </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>