blob: b8752c69f2dfc6fcf133772b34e16b9b7dad2f2b [file] [log] [blame]
Lathish1279d192019-10-10 13:30:07 +01001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5 <groupId>org.oran.nearric</groupId>
6 <artifactId>nearric-simulator</artifactId>
7 <version>1.0.0-SNAPSHOT</version>
8 <packaging>pom</packaging>
9 <name>${project.artifactId}</name>
10
11 <parent>
12 <groupId>org.springframework.boot</groupId>
13 <artifactId>spring-boot-starter-parent</artifactId>
14 <version>2.1.9.RELEASE</version>
15 <relativePath />
16 </parent>
17
18 <properties>
19 <spring.boot.version>2.1.9.RELEASE</spring.boot.version>
RehanRaza49a8fd42019-11-11 18:02:32 +010020 <java.version>11</java.version>
Lathish1279d192019-10-10 13:30:07 +010021 </properties>
22
23 <dependencyManagement>
24 <dependencies>
25 <dependency>
26 <groupId>org.springframework.boot</groupId>
27 <artifactId>spring-boot-dependencies</artifactId>
28 <version>${spring.boot.version}</version>
29 <type>pom</type>
30 <scope>import</scope>
31 </dependency>
32 </dependencies>
33 </dependencyManagement>
34
35 <dependencies>
36 <dependency>
37 <groupId>org.springframework</groupId>
38 <artifactId>spring-context</artifactId>
39 </dependency>
40 <dependency>
41 <groupId>org.springframework</groupId>
42 <artifactId>spring-web</artifactId>
43 </dependency>
44 </dependencies>
45 <build>
46 <plugins>
47 <plugin>
48 <groupId>org.apache.maven.plugins</groupId>
49 <artifactId>maven-compiler-plugin</artifactId>
RehanRaza49a8fd42019-11-11 18:02:32 +010050 <version>3.8.1</version>
51 <configuration>
52 <release>${java.version}</release>
53 </configuration>
Lathish1279d192019-10-10 13:30:07 +010054 </plugin>
55 </plugins>
56 </build>
57
58 <modules>
59 <module>a1-med-api</module>
60 <module>nearric-service</module>
61 </modules>
62</project>