waqas.ikram | b01df8b | 2019-07-09 16:14:17 +0000 | [diff] [blame] | 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> |
waqas.ikram | 0a33a29 | 2019-07-23 12:39:15 +0000 | [diff] [blame] | 21 | <module>aai-simulator</module> |
waqas.ikram | 2480541 | 2019-08-01 16:19:31 +0000 | [diff] [blame] | 22 | <module>sdnc-simulator</module> |
waqas.ikram | b01df8b | 2019-07-09 16:14:17 +0000 | [diff] [blame] | 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> |
eHanan | a60b092 | 2019-07-16 15:27:06 +0000 | [diff] [blame] | 49 | <scope>compile</scope> |
waqas.ikram | b01df8b | 2019-07-09 16:14:17 +0000 | [diff] [blame] | 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> |