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> |
waqas.ikram | b01df8b | 2019-07-09 16:14:17 +0000 | [diff] [blame] | 4 | <groupId>org.onap.so.simulators</groupId> |
| 5 | <artifactId>so-simulators</artifactId> |
waqas.ikram | b01df8b | 2019-07-09 16:14:17 +0000 | [diff] [blame] | 6 | <packaging>pom</packaging> |
| 7 | <name>${project.artifactId}</name> |
| 8 | <version>1.0-SNAPSHOT</version> |
waqas.ikram | b01df8b | 2019-07-09 16:14:17 +0000 | [diff] [blame] | 9 | <properties> |
| 10 | <jax.ws.rs>2.1</jax.ws.rs> |
| 11 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
AndrewLamb | fa9bb10 | 2019-10-03 12:02:53 +0100 | [diff] [blame] | 12 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
waqas.ikram | b01df8b | 2019-07-09 16:14:17 +0000 | [diff] [blame] | 13 | <maven.compiler.source>1.8</maven.compiler.source> |
| 14 | <maven.compiler.target>1.8</maven.compiler.target> |
waqas.ikram | 1ac31d9 | 2020-01-28 16:07:47 +0000 | [diff] [blame] | 15 | <jaxb.version>2.3.0</jaxb.version> |
| 16 | <javax.version>1.1.1</javax.version> |
AndrewLamb | fa9bb10 | 2019-10-03 12:02:53 +0100 | [diff] [blame] | 17 | <java.version>1.8</java.version> |
waqas.ikram | b01df8b | 2019-07-09 16:14:17 +0000 | [diff] [blame] | 18 | </properties> |
waqas.ikram | b01df8b | 2019-07-09 16:14:17 +0000 | [diff] [blame] | 19 | <modules> |
waqas.ikram | 76a500e | 2019-08-06 16:15:02 +0000 | [diff] [blame] | 20 | <module>common</module> |
waqas.ikram | b01df8b | 2019-07-09 16:14:17 +0000 | [diff] [blame] | 21 | <module>sdc-simulator</module> |
waqas.ikram | 0a33a29 | 2019-07-23 12:39:15 +0000 | [diff] [blame] | 22 | <module>aai-simulator</module> |
waqas.ikram | 2480541 | 2019-08-01 16:19:31 +0000 | [diff] [blame] | 23 | <module>sdnc-simulator</module> |
AndrewLamb | fa9bb10 | 2019-10-03 12:02:53 +0100 | [diff] [blame] | 24 | <module>vnfm-simulator</module> |
waqas.ikram | b01df8b | 2019-07-09 16:14:17 +0000 | [diff] [blame] | 25 | <module>package</module> |
| 26 | </modules> |
waqas.ikram | b01df8b | 2019-07-09 16:14:17 +0000 | [diff] [blame] | 27 | <dependencyManagement> |
| 28 | <dependencies> |
| 29 | <dependency> |
| 30 | <groupId>org.springframework.boot</groupId> |
| 31 | <artifactId>spring-boot-starter-parent</artifactId> |
waqas.ikram | 1ac31d9 | 2020-01-28 16:07:47 +0000 | [diff] [blame] | 32 | <version>2.1.5.RELEASE</version> |
waqas.ikram | b01df8b | 2019-07-09 16:14:17 +0000 | [diff] [blame] | 33 | <type>pom</type> |
| 34 | <scope>import</scope> |
| 35 | </dependency> |
waqas.ikram | 1ac31d9 | 2020-01-28 16:07:47 +0000 | [diff] [blame] | 36 | <dependency> |
| 37 | <groupId>javax.xml.bind</groupId> |
| 38 | <artifactId>jaxb-api</artifactId> |
| 39 | <version>${jaxb.version}</version> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>com.sun.xml.bind</groupId> |
| 43 | <artifactId>jaxb-core</artifactId> |
| 44 | <version>${jaxb.version}</version> |
| 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>com.sun.xml.bind</groupId> |
| 48 | <artifactId>jaxb-impl</artifactId> |
| 49 | <version>${jaxb.version}</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>javax.activation</groupId> |
| 53 | <artifactId>activation</artifactId> |
| 54 | <version>${javax.version}</version> |
| 55 | </dependency> |
waqas.ikram | b01df8b | 2019-07-09 16:14:17 +0000 | [diff] [blame] | 56 | </dependencies> |
| 57 | </dependencyManagement> |
| 58 | <dependencies> |
| 59 | <dependency> |
| 60 | <groupId>org.springframework.boot</groupId> |
| 61 | <artifactId>spring-boot-starter-web</artifactId> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.springframework.boot</groupId> |
| 65 | <artifactId>spring-boot-starter-actuator</artifactId> |
| 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.springframework.boot</groupId> |
| 69 | <artifactId>spring-boot-starter-tomcat</artifactId> |
eHanan | a60b092 | 2019-07-16 15:27:06 +0000 | [diff] [blame] | 70 | <scope>compile</scope> |
waqas.ikram | b01df8b | 2019-07-09 16:14:17 +0000 | [diff] [blame] | 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.springframework.boot</groupId> |
| 74 | <artifactId>spring-boot-starter-test</artifactId> |
| 75 | <scope>test</scope> |
AndrewLamb | 7336483 | 2020-05-06 14:58:58 +0100 | [diff] [blame] | 76 | <exclusions> |
| 77 | <exclusion> |
| 78 | <artifactId>android-json</artifactId> |
| 79 | <groupId>com.vaadin.external.google</groupId> |
| 80 | </exclusion> |
| 81 | </exclusions> |
waqas.ikram | b01df8b | 2019-07-09 16:14:17 +0000 | [diff] [blame] | 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.springframework.boot</groupId> |
| 85 | <artifactId>spring-boot-starter-aop</artifactId> |
| 86 | </dependency> |
| 87 | <dependency> |
| 88 | <groupId>javax.ws.rs</groupId> |
| 89 | <artifactId>javax.ws.rs-api</artifactId> |
| 90 | <version>${jax.ws.rs}</version> |
| 91 | </dependency> |
| 92 | </dependencies> |
AndrewLamb | 7336483 | 2020-05-06 14:58:58 +0100 | [diff] [blame] | 93 | </project> |