blob: e57caef7a5afbe22ed724a6b68f00b6f769678e3 [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>
20 </properties>
21
22 <dependencyManagement>
23 <dependencies>
24 <dependency>
25 <groupId>org.springframework.boot</groupId>
26 <artifactId>spring-boot-dependencies</artifactId>
27 <version>${spring.boot.version}</version>
28 <type>pom</type>
29 <scope>import</scope>
30 </dependency>
31 </dependencies>
32 </dependencyManagement>
33
34 <dependencies>
35 <dependency>
36 <groupId>org.springframework</groupId>
37 <artifactId>spring-context</artifactId>
38 </dependency>
39 <dependency>
40 <groupId>org.springframework</groupId>
41 <artifactId>spring-web</artifactId>
42 </dependency>
43 </dependencies>
44 <build>
45 <plugins>
46 <plugin>
47 <groupId>org.apache.maven.plugins</groupId>
48 <artifactId>maven-compiler-plugin</artifactId>
49 </plugin>
50 </plugins>
51 </build>
52
53 <modules>
54 <module>a1-med-api</module>
55 <module>nearric-service</module>
56 </modules>
57</project>