ec6f25239115c62bed76ce20aaa4652d50efb7c1
[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             <dependency>
194                 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
195                 <artifactId>db-resources</artifactId>
196                 <version>${project.version}</version>
197             </dependency>
198             <dependency>
199                 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
200                 <artifactId>blueprint-validation</artifactId>
201                 <version>${project.version}</version>
202             </dependency>
203
204             <!-- Testing Dependencies -->
205             <dependency>
206                 <groupId>org.powermock</groupId>
207                 <artifactId>powermock-api-mockito2</artifactId>
208                 <version>${powermock.version}</version>
209                 <scope>test</scope>
210             </dependency>
211             <dependency>
212                 <groupId>org.jetbrains.kotlin</groupId>
213                 <artifactId>kotlin-test-junit</artifactId>
214                 <version>${kotlin.version}</version>
215                 <scope>test</scope>
216             </dependency>
217             <dependency>
218                 <groupId>io.grpc</groupId>
219                 <artifactId>grpc-testing</artifactId>
220                 <version>${grpc.version}</version>
221                 <scope>test</scope>
222             </dependency>
223         </dependencies>
224     </dependencyManagement>
225
226     <dependencies>
227         <dependency>
228             <groupId>com.att.eelf</groupId>
229             <artifactId>eelf-core</artifactId>
230         </dependency>
231         <dependency>
232             <groupId>org.onap.logging-analytics</groupId>
233             <artifactId>logging-slf4j</artifactId>
234         </dependency>
235         <dependency>
236             <groupId>org.apache.commons</groupId>
237             <artifactId>commons-lang3</artifactId>
238          </dependency>
239         <dependency>
240             <groupId>commons-collections</groupId>
241             <artifactId>commons-collections</artifactId>
242         </dependency>
243         <dependency>
244             <groupId>commons-io</groupId>
245             <artifactId>commons-io</artifactId>
246         </dependency>
247         <dependency>
248             <groupId>com.jayway.jsonpath</groupId>
249             <artifactId>json-path</artifactId>
250         </dependency>
251         <dependency>
252             <groupId>io.springfox</groupId>
253             <artifactId>springfox-swagger2</artifactId>
254         </dependency>
255         <dependency>
256             <groupId>io.springfox</groupId>
257             <artifactId>springfox-swagger-ui</artifactId>
258         </dependency>
259         <dependency>
260             <groupId>org.jetbrains.kotlin</groupId>
261             <artifactId>kotlin-stdlib</artifactId>
262         </dependency>
263         <dependency>
264             <groupId>org.jetbrains.kotlin</groupId>
265             <artifactId>kotlin-stdlib-jdk8</artifactId>
266         </dependency>
267         <dependency>
268             <groupId>com.fasterxml.jackson.module</groupId>
269             <artifactId>jackson-module-kotlin</artifactId>
270         </dependency>
271     </dependencies>
272
273     <build>
274         <plugins>
275             <plugin>
276                 <groupId>org.apache.maven.plugins</groupId>
277                 <artifactId>maven-source-plugin</artifactId>
278                 <version>3.0.1</version>
279                 <executions>
280                     <execution>
281                         <id>attach-sources</id>
282                         <goals>
283                             <goal>jar</goal>
284                         </goals>
285                     </execution>
286                 </executions>
287             </plugin>
288
289             <plugin>
290                 <artifactId>kotlin-maven-plugin</artifactId>
291                 <groupId>org.jetbrains.kotlin</groupId>
292                 <version>${kotlin.maven.version}</version>
293                 <executions>
294                     <execution>
295                         <id>compile</id>
296                         <goals>
297                             <goal>compile</goal>
298                         </goals>
299                         <configuration>
300                             <sourceDirs>
301                                 <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
302                                 <sourceDir>${project.basedir}/src/main/java</sourceDir>
303                             </sourceDirs>
304                         </configuration>
305                     </execution>
306                     <execution>
307                         <id>test-compile</id>
308                         <goals>
309                             <goal>test-compile</goal>
310                         </goals>
311                         <configuration>
312                             <sourceDirs>
313                                 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
314                                 <sourceDir>${project.basedir}/src/test/java</sourceDir>
315                             </sourceDirs>
316                         </configuration>
317                     </execution>
318                 </executions>
319             </plugin>
320             <plugin>
321                 <groupId>org.apache.maven.plugins</groupId>
322                 <artifactId>maven-compiler-plugin</artifactId>
323                 <version>3.5.1</version>
324                 <configuration>
325                     <source>${maven.compiler.source}</source>
326                     <target>${maven.compiler.target}</target>
327                 </configuration>
328                 <executions>
329                     <!-- Replacing default-compile as it is treated specially by maven -->
330                     <execution>
331                         <id>default-compile</id>
332                         <phase>none</phase>
333                     </execution>
334                     <!-- Replacing default-testCompile as it is treated specially by maven -->
335                     <execution>
336                         <id>default-testCompile</id>
337                         <phase>none</phase>
338                     </execution>
339                     <execution>
340                         <id>java-compile</id>
341                         <phase>compile</phase>
342                         <goals>
343                             <goal>compile</goal>
344                         </goals>
345                     </execution>
346                     <execution>
347                         <id>java-test-compile</id>
348                         <phase>test-compile</phase>
349                         <goals>
350                             <goal>testCompile</goal>
351                         </goals>
352                     </execution>
353                 </executions>
354             </plugin>
355         </plugins>
356     </build>
357 </project>