Jenkins job testing
[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                 <dockerfile-maven-version>1.4.2</dockerfile-maven-version>
19         </properties>
20         <dependencies>
21                 <dependency>
22                         <groupId>org.oran.nearric</groupId>
23                         <artifactId>a1-med-api</artifactId>
24                         <version>1.0.0-SNAPSHOT</version>
25                 </dependency>
26                 <dependency>
27                         <groupId>org.springframework.boot</groupId>
28                         <artifactId>spring-boot-starter-web</artifactId>
29                         <exclusions>
30                                 <exclusion>
31                                         <groupId>org.springframework.boot</groupId>
32                                         <artifactId>spring-boot-starter-logging</artifactId>
33                                 </exclusion>
34                         </exclusions>
35                 </dependency>
36                 <dependency>
37                         <groupId>org.springframework.boot</groupId>
38                         <artifactId>spring-boot-starter-data-jpa</artifactId>
39                 </dependency>
40                 <dependency>
41                         <groupId>org.springframework.boot</groupId>
42                         <artifactId>spring-boot-starter-actuator</artifactId>
43                 </dependency>
44                 <dependency>
45                         <groupId>org.springframework.boot</groupId>
46                         <artifactId>spring-boot-starter-test</artifactId>
47                         <scope>test</scope>
48                 </dependency>
49                 <dependency>
50                         <groupId>org.springframework.boot</groupId>
51                         <artifactId>spring-boot-devtools</artifactId>
52                         <scope>runtime</scope>
53                 </dependency>
54                 <dependency>
55                         <groupId>junit</groupId>
56                         <artifactId>junit</artifactId>
57                         <scope>test</scope>
58                 </dependency>
59                 <dependency>
60                         <groupId>io.swagger</groupId>
61                         <artifactId>swagger-jaxrs</artifactId>
62                         <version>1.5.0</version>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.apache.directory.studio</groupId>
66                         <artifactId>org.apache.commons.io</artifactId>
67                         <version>2.4</version>
68                 </dependency>
69                 <dependency>
70                         <groupId>com.googlecode.json-simple</groupId>
71                         <artifactId>json-simple</artifactId>
72                         <version>1.1.1</version>
73                 </dependency>
74
75                 <dependency>
76                         <groupId>io.springfox</groupId>
77                         <artifactId>springfox-swagger-ui</artifactId>
78                         <version>2.6.1</version>
79                         <scope>compile</scope>
80                 </dependency>
81                 <dependency>
82                         <groupId>io.springfox</groupId>
83                         <artifactId>springfox-swagger2</artifactId>
84                         <version>2.6.1</version>
85                         <scope>compile</scope>
86                 </dependency>
87                 <dependency>
88                         <groupId>com.fasterxml.jackson.core</groupId>
89                         <artifactId>jackson-databind</artifactId>
90                 </dependency>
91                 <dependency>
92                         <groupId>com.h2database</groupId>
93                         <artifactId>h2</artifactId>
94                 </dependency>
95                 <!-- https://mvnrepository.com/artifact/commons-beanutils/commons-beanutils -->
96                 <dependency>
97                         <groupId>commons-beanutils</groupId>
98                         <artifactId>commons-beanutils</artifactId>
99                         <version>1.9.3</version>
100                 </dependency>
101                 <dependency>
102                         <groupId>org.modelmapper</groupId>
103                         <artifactId>modelmapper</artifactId>
104                         <version>2.3.0</version>
105                 </dependency>
106                 <dependency>
107                         <groupId>com.squareup.okio</groupId>
108                         <artifactId>okio</artifactId>
109                         <version>1.13.0</version>
110                 </dependency>
111                 <dependency>
112                         <groupId>com.squareup.okhttp</groupId>
113                         <artifactId>okhttp</artifactId>
114                         <version>${okhttp-version}</version>
115                 </dependency>
116                 <dependency>
117                         <groupId>com.squareup.okhttp</groupId>
118                         <artifactId>logging-interceptor</artifactId>
119                         <version>${okhttp-version}</version>
120                 </dependency>
121                 <dependency>
122                         <groupId>com.google.code.gson</groupId>
123                         <artifactId>gson</artifactId>
124                         <version>${gson-version}</version>
125                 </dependency>
126         <dependency>
127             <groupId>com.github.java-json-tools</groupId>
128             <artifactId>json-schema-validator</artifactId>
129             <version>2.2.11</version>
130         </dependency>
131         </dependencies>
132         <build>
133                 <plugins>
134                         <plugin>
135                                 <groupId>org.springframework.boot</groupId>
136                                 <artifactId>spring-boot-maven-plugin</artifactId>
137                                 <configuration>
138                                         <mainClass>org.onap.nearric.simulator.config.NearRicApplication</mainClass>
139                                 </configuration>
140                                 <executions>
141                                         <execution>
142                                                 <goals>
143                                                         <goal>repackage</goal>
144                                                 </goals>
145                                         </execution>
146                                 </executions>
147                         </plugin>
148                         <plugin>
149                                 <groupId>com.spotify</groupId>
150                                 <artifactId>dockerfile-maven-plugin</artifactId>
151                                 <version>${dockerfile-maven-version}</version>
152                                 <executions>
153                                         <execution>
154                                                 <id>default</id>
155                                                 <goals>
156                                                         <goal>build</goal>
157                                                         <goal>push</goal>
158                                                 </goals>
159                                         </execution>
160                                 </executions>
161                                 <configuration>
162                                         <repository>nearric-simulator</repository>
163                                         <tag>${project.version}</tag>
164                                         <buildArgs>
165                                                 <JAR_FILE>target/${project.build.finalName}.jar</JAR_FILE>
166                                         </buildArgs>
167                                 </configuration>
168                         </plugin>
169                 </plugins>
170         </build>
171 </project>