blob: 80d4ba95de482ef97337b4ec366ecbaaff2c496b [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>
AndrewLambfa9bb102019-10-03 12:02:53 +010015 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
waqas.ikramb01df8b2019-07-09 16:14:17 +000016 <maven.compiler.source>1.8</maven.compiler.source>
17 <maven.compiler.target>1.8</maven.compiler.target>
AndrewLambfa9bb102019-10-03 12:02:53 +010018 <java.version>1.8</java.version>
waqas.ikramb01df8b2019-07-09 16:14:17 +000019 </properties>
20
21 <modules>
waqas.ikram76a500e2019-08-06 16:15:02 +000022 <module>common</module>
waqas.ikramb01df8b2019-07-09 16:14:17 +000023 <module>sdc-simulator</module>
waqas.ikram0a33a292019-07-23 12:39:15 +000024 <module>aai-simulator</module>
waqas.ikram24805412019-08-01 16:19:31 +000025 <module>sdnc-simulator</module>
AndrewLambfa9bb102019-10-03 12:02:53 +010026 <module>vnfm-simulator</module>
waqas.ikramb01df8b2019-07-09 16:14:17 +000027 <module>package</module>
28 </modules>
29
30 <dependencyManagement>
31 <dependencies>
32 <dependency>
33 <groupId>org.springframework.boot</groupId>
34 <artifactId>spring-boot-starter-parent</artifactId>
35 <version>2.0.5.RELEASE</version>
36 <type>pom</type>
37 <scope>import</scope>
38 </dependency>
39 </dependencies>
40 </dependencyManagement>
41 <dependencies>
42 <dependency>
43 <groupId>org.springframework.boot</groupId>
44 <artifactId>spring-boot-starter-web</artifactId>
45 </dependency>
46 <dependency>
47 <groupId>org.springframework.boot</groupId>
48 <artifactId>spring-boot-starter-actuator</artifactId>
49 </dependency>
50 <dependency>
51 <groupId>org.springframework.boot</groupId>
52 <artifactId>spring-boot-starter-tomcat</artifactId>
eHanana60b0922019-07-16 15:27:06 +000053 <scope>compile</scope>
waqas.ikramb01df8b2019-07-09 16:14:17 +000054 </dependency>
55 <dependency>
56 <groupId>org.springframework.boot</groupId>
57 <artifactId>spring-boot-starter-test</artifactId>
58 <scope>test</scope>
59 </dependency>
60 <dependency>
61 <groupId>org.springframework.boot</groupId>
62 <artifactId>spring-boot-starter-aop</artifactId>
63 </dependency>
64 <dependency>
65 <groupId>javax.ws.rs</groupId>
66 <artifactId>javax.ws.rs-api</artifactId>
67 <version>${jax.ws.rs}</version>
68 </dependency>
69 </dependencies>
70</project>