Near-RT-RIC Simualator & README files
[nonrtric.git] / near-rt-ric-simulator / nearric-simulator / nearric-service / pom.xml
1 <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         <parent>
6                 <groupId>org.oran.nearric</groupId>
7                 <artifactId>nearric-simulator</artifactId>
8                 <version>1.0.0-SNAPSHOT</version>
9         </parent>
10         <artifactId>nearric-service</artifactId>
11         <name>${project.artifactId}</name>
12
13         <properties>
14                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15                 <java.version>1.8</java.version>
16                 <okhttp-version>2.7.5</okhttp-version>
17                 <gson-version>2.8.1</gson-version>
18         </properties>
19         <dependencies>
20                 <dependency>
21                         <groupId>org.oran.nearric</groupId>
22                         <artifactId>a1-med-api</artifactId>
23                         <version>0.10.3-SNAPSHOT</version>
24                 </dependency>
25                 <dependency>
26                         <groupId>org.springframework.boot</groupId>
27                         <artifactId>spring-boot-starter-web</artifactId>
28                 </dependency>
29                 <dependency>
30                         <groupId>org.springframework.boot</groupId>
31                         <artifactId>spring-boot-starter-data-jpa</artifactId>
32                 </dependency>
33                 <dependency>
34                         <groupId>org.springframework.boot</groupId>
35                         <artifactId>spring-boot-starter-actuator</artifactId>
36                 </dependency>
37                 <dependency>
38                         <groupId>org.springframework.boot</groupId>
39                         <artifactId>spring-boot-starter-test</artifactId>
40                         <scope>test</scope>
41                 </dependency>
42                 <dependency>
43                         <groupId>org.springframework.boot</groupId>
44                         <artifactId>spring-boot-devtools</artifactId>
45                         <scope>runtime</scope>
46                 </dependency>
47                 <dependency>
48                         <groupId>junit</groupId>
49                         <artifactId>junit</artifactId>
50                         <scope>test</scope>
51                 </dependency>
52                 <dependency>
53                         <groupId>io.swagger</groupId>
54                         <artifactId>swagger-jaxrs</artifactId>
55                         <version>1.5.0</version>
56                 </dependency>
57                 <dependency>
58                         <groupId>org.apache.directory.studio</groupId>
59                         <artifactId>org.apache.commons.io</artifactId>
60                         <version>2.4</version>
61                 </dependency>
62                 <dependency>
63                         <groupId>com.googlecode.json-simple</groupId>
64                         <artifactId>json-simple</artifactId>
65                         <version>1.1.1</version>
66                 </dependency>
67
68                 <dependency>
69                         <groupId>io.springfox</groupId>
70                         <artifactId>springfox-swagger-ui</artifactId>
71                         <version>2.6.1</version>
72                         <scope>compile</scope>
73                 </dependency>
74                 <dependency>
75                         <groupId>io.springfox</groupId>
76                         <artifactId>springfox-swagger2</artifactId>
77                         <version>2.6.1</version>
78                         <scope>compile</scope>
79                 </dependency>
80                 <dependency>
81                         <groupId>com.fasterxml.jackson.core</groupId>
82                         <artifactId>jackson-databind</artifactId>
83                 </dependency>
84                 <dependency>
85                         <groupId>com.h2database</groupId>
86                         <artifactId>h2</artifactId>
87                 </dependency>
88                 <!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
89                 <dependency>
90                         <groupId>commons-beanutils</groupId>
91                         <artifactId>commons-beanutils</artifactId>
92                         <version>1.9.3</version>
93                 </dependency>
94                 <dependency>
95                         <groupId>org.modelmapper</groupId>
96                         <artifactId>modelmapper</artifactId>
97                         <version>2.3.0</version>
98                 </dependency>
99                 <dependency>
100                         <groupId>com.squareup.okio</groupId>
101                         <artifactId>okio</artifactId>
102                         <version>1.13.0</version>
103                 </dependency>
104                 <dependency>
105                         <groupId>com.squareup.okhttp</groupId>
106                         <artifactId>okhttp</artifactId>
107                         <version>${okhttp-version}</version>
108                 </dependency>
109                 <dependency>
110                         <groupId>com.squareup.okhttp</groupId>
111                         <artifactId>logging-interceptor</artifactId>
112                         <version>${okhttp-version}</version>
113                 </dependency>
114                 <dependency>
115                         <groupId>com.google.code.gson</groupId>
116                         <artifactId>gson</artifactId>
117                         <version>${gson-version}</version>
118                 </dependency>
119         <dependency>
120             <groupId>com.github.java-json-tools</groupId>
121             <artifactId>json-schema-validator</artifactId>
122             <version>2.2.11</version>
123         </dependency>
124         </dependencies>
125         <build>
126                 <plugins>
127                         <plugin>
128                                 <groupId>org.springframework.boot</groupId>
129                                 <artifactId>spring-boot-maven-plugin</artifactId>
130                                 <configuration>
131                                         <mainClass>org.onap.nearric.simulator.config.NearRicApplication</mainClass>
132                                 </configuration>
133                                 <executions>
134                                         <execution>
135                                                 <goals>
136                                                         <goal>repackage</goal>
137                                                 </goals>
138                                         </execution>
139                                 </executions>
140                         </plugin>
141                 </plugins>
142         </build>
143 </project>