Add modelType service reactive compatible.
[ccsdk/cds.git] / ms / controllerblueprints / parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ Copyright © 2017-2018 AT&T Intellectual Property.
4   ~
5   ~ Modifications Copyright © 2018 IBM.
6   ~
7   ~ Licensed under the Apache License, Version 2.0 (the "License");
8   ~ you may not use this file except in compliance with the License.
9   ~ You may obtain a copy of the License at
10   ~
11   ~     http://www.apache.org/licenses/LICENSE-2.0
12   ~
13   ~ Unless required by applicable law or agreed to in writing, software
14   ~ distributed under the License is distributed on an "AS IS" BASIS,
15   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   ~ See the License for the specific language governing permissions and
17   ~ limitations under the License.
18   -->
19 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20     <modelVersion>4.0.0</modelVersion>
21     <parent>
22         <groupId>org.onap.ccsdk.apps</groupId>
23         <artifactId>controllerblueprints</artifactId>
24         <version>0.4.0-SNAPSHOT</version>
25     </parent>
26     <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
27     <artifactId>parent</artifactId>
28     <name>Controller Blueprints Parent</name>
29     <packaging>pom</packaging>
30     <properties>
31         <spring.boot.version>2.1.1.RELEASE</spring.boot.version>
32         <spring.version>5.1.3.RELEASE</spring.version>
33         <kotlin.version>1.3.10</kotlin.version>
34         <kotlin.maven.version>1.3.10</kotlin.maven.version>
35         <kotlin.couroutines.version>1.0.1</kotlin.couroutines.version>
36         <grpc.version>1.16.1</grpc.version>
37         <protobuff.java.utils.version>3.6.1</protobuff.java.utils.version>
38         <eelf.version>1.0.0</eelf.version>
39         <guava.version>26.0-jre</guava.version>
40         <springfox.swagger2.version>2.9.2</springfox.swagger2.version>
41         <h2database.version>1.4.197</h2database.version>
42         <onap.logger.slf4j>1.2.2</onap.logger.slf4j>
43         <powermock.version>1.7.4</powermock.version>
44     </properties>
45     <dependencyManagement>
46         <dependencies>
47             <!-- Spring boot -->
48             <dependency>
49                 <groupId>org.springframework.boot</groupId>
50                 <artifactId>spring-boot-dependencies</artifactId>
51                 <version>${spring.boot.version}</version>
52                 <type>pom</type>
53                 <scope>import</scope>
54             </dependency>
55
56             <dependency>
57                 <groupId>com.att.eelf</groupId>
58                 <artifactId>eelf-core</artifactId>
59                 <version>${eelf.version}</version>
60             </dependency>
61             <dependency>
62                 <groupId>org.onap.logging-analytics</groupId>
63                 <artifactId>logging-slf4j</artifactId>
64                 <version>${onap.logger.slf4j}</version>
65             </dependency>
66
67             <!--Swagger Dependencies -->
68             <dependency>
69                 <groupId>io.springfox</groupId>
70                 <artifactId>springfox-swagger2</artifactId>
71                 <version>${springfox.swagger2.version}</version>
72             </dependency>
73             <dependency>
74                 <groupId>io.springfox</groupId>
75                 <artifactId>springfox-swagger-ui</artifactId>
76                 <version>${springfox.swagger2.version}</version>
77             </dependency>
78
79             <dependency>
80                 <groupId>org.apache.commons</groupId>
81                 <artifactId>commons-lang3</artifactId>
82                 <version>3.2.1</version>
83             </dependency>
84             <dependency>
85                 <groupId>commons-collections</groupId>
86                 <artifactId>commons-collections</artifactId>
87                 <version>3.2.2</version>
88             </dependency>
89             <dependency>
90                 <groupId>commons-io</groupId>
91                 <artifactId>commons-io</artifactId>
92                 <version>2.6</version>
93             </dependency>
94             <dependency>
95                 <groupId>org.apache.velocity</groupId>
96                 <artifactId>velocity</artifactId>
97                 <version>1.7</version>
98             </dependency>
99              <dependency>
100                 <groupId>com.google.guava</groupId>
101                 <artifactId>guava</artifactId>
102                 <version>${guava.version}</version>
103             </dependency>
104
105             <!-- Kotlin Dependencies -->
106             <dependency>
107                 <groupId>org.jetbrains.kotlin</groupId>
108                 <artifactId>kotlin-stdlib</artifactId>
109                 <version>${kotlin.version}</version>
110             </dependency>
111             <dependency>
112                 <groupId>org.jetbrains.kotlin</groupId>
113                 <artifactId>kotlinx-couroutines-core</artifactId>
114                 <version>${kotlin.couroutines.version}</version>
115             </dependency>
116             <dependency>
117                 <groupId>org.jetbrains.kotlinx</groupId>
118                 <artifactId>kotlinx-coroutines-reactor</artifactId>
119                 <version>${kotlin.couroutines.version}</version>
120             </dependency>
121             <dependency>
122                 <groupId>org.jetbrains.kotlin</groupId>
123                 <artifactId>kotlin-reflect</artifactId>
124                 <version>${kotlin.version}</version>
125             </dependency>
126             <dependency>
127                 <groupId>org.jetbrains.kotlin</groupId>
128                 <artifactId>kotlin-stdlib-jdk8</artifactId>
129                 <version>${kotlin.version}</version>
130             </dependency>
131             <dependency>
132                 <groupId>org.jetbrains.kotlin</groupId>
133                 <artifactId>kotlin-stdlib-jdk7</artifactId>
134                 <version>${kotlin.version}</version>
135             </dependency>
136
137             <!-- GRPC Dependencies -->
138             <dependency>
139                 <groupId>io.grpc</groupId>
140                 <artifactId>grpc-core</artifactId>
141                 <version>${grpc.version}</version>
142             </dependency>
143             <dependency>
144                 <groupId>io.grpc</groupId>
145                 <artifactId>grpc-netty</artifactId>
146                 <version>${grpc.version}</version>
147             </dependency>
148             <dependency>
149                 <groupId>io.grpc</groupId>
150                 <artifactId>grpc-protobuf</artifactId>
151                 <version>${grpc.version}</version>
152             </dependency>
153             <dependency>
154                 <groupId>io.grpc</groupId>
155                 <artifactId>grpc-stub</artifactId>
156                 <version>${grpc.version}</version>
157             </dependency>
158             <dependency>
159                 <groupId>com.google.protobuf</groupId>
160                 <artifactId>protobuf-java-util</artifactId>
161                 <version>${protobuff.java.utils.version}</version>
162             </dependency>
163
164             <!-- Database -->
165             <dependency>
166                 <groupId>com.h2database</groupId>
167                 <artifactId>h2</artifactId>
168                 <version>${h2database.version}</version>
169             </dependency>
170
171
172             <!-- Application Components -->
173             <dependency>
174                 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
175                 <artifactId>core</artifactId>
176                 <version>${project.version}</version>
177             </dependency>
178             <dependency>
179                 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
180                 <artifactId>service</artifactId>
181                 <version>${project.version}</version>
182             </dependency>
183             <dependency>
184                 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
185                 <artifactId>application</artifactId>
186                 <version>${project.version}</version>
187             </dependency>
188             <dependency>
189                 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
190                 <artifactId>resource-dict</artifactId>
191                 <version>${project.version}</version>
192             </dependency>
193
194             <!-- Testing Dependencies -->
195             <dependency>
196                 <groupId>org.powermock</groupId>
197                 <artifactId>powermock-api-mockito2</artifactId>
198                 <version>${powermock.version}</version>
199                 <scope>test</scope>
200             </dependency>
201             <dependency>
202                 <groupId>org.jetbrains.kotlin</groupId>
203                 <artifactId>kotlin-test-junit</artifactId>
204                 <version>${kotlin.version}</version>
205                 <scope>test</scope>
206             </dependency>
207             <dependency>
208                 <groupId>io.grpc</groupId>
209                 <artifactId>grpc-testing</artifactId>
210                 <version>${grpc.version}</version>
211                 <scope>test</scope>
212             </dependency>
213         </dependencies>
214     </dependencyManagement>
215
216     <dependencies>
217         <dependency>
218             <groupId>com.att.eelf</groupId>
219             <artifactId>eelf-core</artifactId>
220         </dependency>
221         <dependency>
222             <groupId>org.onap.logging-analytics</groupId>
223             <artifactId>logging-slf4j</artifactId>
224         </dependency>
225         <dependency>
226             <groupId>org.apache.commons</groupId>
227             <artifactId>commons-lang3</artifactId>
228          </dependency>
229         <dependency>
230             <groupId>commons-collections</groupId>
231             <artifactId>commons-collections</artifactId>
232         </dependency>
233         <dependency>
234             <groupId>commons-io</groupId>
235             <artifactId>commons-io</artifactId>
236         </dependency>
237         <dependency>
238             <groupId>com.jayway.jsonpath</groupId>
239             <artifactId>json-path</artifactId>
240         </dependency>
241         <dependency>
242             <groupId>io.springfox</groupId>
243             <artifactId>springfox-swagger2</artifactId>
244         </dependency>
245         <dependency>
246             <groupId>io.springfox</groupId>
247             <artifactId>springfox-swagger-ui</artifactId>
248         </dependency>
249         <dependency>
250             <groupId>org.jetbrains.kotlin</groupId>
251             <artifactId>kotlin-stdlib</artifactId>
252         </dependency>
253         <dependency>
254             <groupId>org.jetbrains.kotlin</groupId>
255             <artifactId>kotlin-stdlib-jdk8</artifactId>
256         </dependency>
257         <dependency>
258             <groupId>com.fasterxml.jackson.module</groupId>
259             <artifactId>jackson-module-kotlin</artifactId>
260         </dependency>
261     </dependencies>
262
263     <build>
264         <plugins>
265             <plugin>
266                 <groupId>org.apache.maven.plugins</groupId>
267                 <artifactId>maven-source-plugin</artifactId>
268                 <version>3.0.1</version>
269                 <executions>
270                     <execution>
271                         <id>attach-sources</id>
272                         <goals>
273                             <goal>jar</goal>
274                         </goals>
275                     </execution>
276                 </executions>
277             </plugin>
278
279             <plugin>
280                 <artifactId>kotlin-maven-plugin</artifactId>
281                 <groupId>org.jetbrains.kotlin</groupId>
282                 <version>${kotlin.maven.version}</version>
283                 <executions>
284                     <execution>
285                         <id>compile</id>
286                         <goals>
287                             <goal>compile</goal>
288                         </goals>
289                         <configuration>
290                             <sourceDirs>
291                                 <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
292                                 <sourceDir>${project.basedir}/src/main/java</sourceDir>
293                             </sourceDirs>
294                         </configuration>
295                     </execution>
296                     <execution>
297                         <id>test-compile</id>
298                         <goals>
299                             <goal>test-compile</goal>
300                         </goals>
301                         <configuration>
302                             <sourceDirs>
303                                 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
304                                 <sourceDir>${project.basedir}/src/test/java</sourceDir>
305                             </sourceDirs>
306                         </configuration>
307                     </execution>
308                 </executions>
309             </plugin>
310             <plugin>
311                 <groupId>org.apache.maven.plugins</groupId>
312                 <artifactId>maven-compiler-plugin</artifactId>
313                 <version>3.5.1</version>
314                 <configuration>
315                     <source>${maven.compiler.source}</source>
316                     <target>${maven.compiler.target}</target>
317                 </configuration>
318                 <executions>
319                     <!-- Replacing default-compile as it is treated specially by maven -->
320                     <execution>
321                         <id>default-compile</id>
322                         <phase>none</phase>
323                     </execution>
324                     <!-- Replacing default-testCompile as it is treated specially by maven -->
325                     <execution>
326                         <id>default-testCompile</id>
327                         <phase>none</phase>
328                     </execution>
329                     <execution>
330                         <id>java-compile</id>
331                         <phase>compile</phase>
332                         <goals>
333                             <goal>compile</goal>
334                         </goals>
335                     </execution>
336                     <execution>
337                         <id>java-test-compile</id>
338                         <phase>test-compile</phase>
339                         <goals>
340                             <goal>testCompile</goal>
341                         </goals>
342                     </execution>
343                 </executions>
344             </plugin>
345         </plugins>
346     </build>
347 </project>