Use managed guava version
[ccsdk/apps.git] / ms / blueprintsprocessor / parent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~  Copyright © 2017-2018 AT&T Intellectual Property.
4   ~
5   ~  Licensed under the Apache License, Version 2.0 (the "License");
6   ~  you may not use this file except in compliance with the License.
7   ~  You may obtain a copy of the License at
8   ~
9   ~      http://www.apache.org/licenses/LICENSE-2.0
10   ~
11   ~  Unless required by applicable law or agreed to in writing, software
12   ~  distributed under the License is distributed on an "AS IS" BASIS,
13   ~  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   ~  See the License for the specific language governing permissions and
15   ~  limitations under the License.
16   -->
17 <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">
18     <modelVersion>4.0.0</modelVersion>
19     <parent>
20         <groupId>org.onap.ccsdk.apps</groupId>
21         <artifactId>blueprintsprocessor</artifactId>
22         <version>0.3.0-SNAPSHOT</version>
23     </parent>
24     <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
25     <artifactId>parent</artifactId>
26     <packaging>pom</packaging>
27     <name>Blueprints Processor Parent</name>
28     <description>Blueprints Processor Parent</description>
29     <properties>
30         <controllerblueprints.version>0.3.0-SNAPSHOT</controllerblueprints.version>
31         <spring.boot.version>2.0.4.RELEASE</spring.boot.version>
32         <spring.version>5.0.8.RELEASE</spring.version>
33         <kotlin.version>1.2.60</kotlin.version>
34         <eelf.version>1.0.0</eelf.version>
35         <springfox.swagger2.version>2.9.2</springfox.swagger2.version>
36         <h2database.version>1.4.197</h2database.version>
37     </properties>
38     <dependencyManagement>
39         <dependencies>
40             <!-- Spring Boot -->
41             <dependency>
42                 <groupId>org.springframework.boot</groupId>
43                 <artifactId>spring-boot-starter-parent</artifactId>
44                 <version>${spring.boot.version}</version>
45                 <type>pom</type>
46                 <scope>import</scope>
47             </dependency>
48
49             <!-- Logging Dependencies -->
50             <dependency>
51                 <groupId>com.att.eelf</groupId>
52                 <artifactId>eelf-core</artifactId>
53                 <version>${eelf.version}</version>
54             </dependency>
55
56             <!-- Kotlin Dependencies -->
57             <dependency>
58                 <groupId>org.jetbrains.kotlin</groupId>
59                 <artifactId>kotlin-stdlib</artifactId>
60                 <version>${kotlin.version}</version>
61             </dependency>
62             <dependency>
63                 <groupId>org.jetbrains.kotlin</groupId>
64                 <artifactId>kotlin-stdlib-jdk8</artifactId>
65                 <version>${kotlin.version}</version>
66             </dependency>
67             <dependency>
68                 <groupId>org.jetbrains.kotlin</groupId>
69                 <artifactId>kotlin-reflect</artifactId>
70                 <version>${kotlin.version}</version>
71             </dependency>
72
73             <!-- Application Module Dependencies -->
74             <dependency>
75                 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
76                 <artifactId>db-lib</artifactId>
77                 <version>${project.version}</version>
78             </dependency>
79             <dependency>
80                 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
81                 <artifactId>rest-lib</artifactId>
82                 <version>${project.version}</version>
83             </dependency>
84             <dependency>
85                 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
86                 <artifactId>core</artifactId>
87                 <version>${project.version}</version>
88             </dependency>
89             <dependency>
90                 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
91                 <artifactId>db-service</artifactId>
92                 <version>${project.version}</version>
93             </dependency>
94             <dependency>
95                 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
96                 <artifactId>execution-service</artifactId>
97                 <version>${project.version}</version>
98             </dependency>
99             <dependency>
100                 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
101                 <artifactId>resolution-service</artifactId>
102                 <version>${project.version}</version>
103             </dependency>
104             <dependency>
105                 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
106                 <artifactId>resource-api</artifactId>
107                 <version>${project.version}</version>
108             </dependency>
109             <dependency>
110                 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
111                 <artifactId>selfservice-api</artifactId>
112                 <version>${project.version}</version>
113             </dependency>
114
115             <!-- Application Component Dependency -->
116             <dependency>
117                 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
118                 <artifactId>resource-dict</artifactId>
119                 <version>${controllerblueprints.version}</version>
120             </dependency>
121
122             <!--Swagger Dependencies -->
123             <dependency>
124                 <groupId>io.springfox</groupId>
125                 <artifactId>springfox-swagger2</artifactId>
126                 <version>${springfox.swagger2.version}</version>
127             </dependency>
128             <dependency>
129                 <groupId>io.springfox</groupId>
130                 <artifactId>springfox-swagger-ui</artifactId>
131                 <version>${springfox.swagger2.version}</version>
132             </dependency>
133
134             <!-- Common Libs -->
135             <dependency>
136                 <groupId>org.apache.commons</groupId>
137                 <artifactId>commons-lang3</artifactId>
138                 <version>3.2.1</version>
139             </dependency>
140             <dependency>
141                 <groupId>commons-collections</groupId>
142                 <artifactId>commons-collections</artifactId>
143                 <version>3.2.2</version>
144             </dependency>
145             <dependency>
146                 <groupId>commons-io</groupId>
147                 <artifactId>commons-io</artifactId>
148                 <version>2.6</version>
149             </dependency>
150             <dependency>
151                 <groupId>org.apache.velocity</groupId>
152                 <artifactId>velocity</artifactId>
153                 <version>1.7</version>
154             </dependency>
155             <dependency>
156                 <groupId>com.google.guava</groupId>
157                 <artifactId>guava</artifactId>
158
159             </dependency>
160
161             <!-- Database -->
162             <dependency>
163                 <groupId>com.h2database</groupId>
164                 <artifactId>h2</artifactId>
165                 <version>${h2database.version}</version>
166             </dependency>
167             <!-- Test Dependency -->
168             <dependency>
169                 <groupId>org.jetbrains.kotlin</groupId>
170                 <artifactId>kotlin-test</artifactId>
171                 <version>${kotlin.version}</version>
172                 <scope>test</scope>
173             </dependency>
174         </dependencies>
175     </dependencyManagement>
176     <dependencies>
177         <dependency>
178             <groupId>org.apache.commons</groupId>
179             <artifactId>commons-lang3</artifactId>
180         </dependency>
181         <dependency>
182             <groupId>commons-collections</groupId>
183             <artifactId>commons-collections</artifactId>
184         </dependency>
185         <dependency>
186             <groupId>commons-io</groupId>
187             <artifactId>commons-io</artifactId>
188         </dependency>
189         <dependency>
190             <groupId>org.apache.velocity</groupId>
191             <artifactId>velocity</artifactId>
192         </dependency>
193
194         <dependency>
195             <groupId>io.springfox</groupId>
196             <artifactId>springfox-swagger2</artifactId>
197         </dependency>
198         <dependency>
199             <groupId>io.springfox</groupId>
200             <artifactId>springfox-swagger-ui</artifactId>
201         </dependency>
202
203         <dependency>
204             <groupId>org.springframework.boot</groupId>
205             <artifactId>spring-boot-starter-test</artifactId>
206             <scope>test</scope>
207         </dependency>
208         <dependency>
209             <groupId>org.jetbrains.kotlin</groupId>
210             <artifactId>kotlin-test</artifactId>
211             <version>${kotlin.version}</version>
212             <scope>test</scope>
213         </dependency>
214         <dependency>
215             <groupId>io.projectreactor</groupId>
216             <artifactId>reactor-test</artifactId>
217             <scope>test</scope>
218         </dependency>
219         <dependency>
220             <groupId>org.jetbrains.kotlin</groupId>
221             <artifactId>kotlin-stdlib-jdk8</artifactId>
222             <version>${kotlin.version}</version>
223         </dependency>
224     </dependencies>
225     <build>
226         <plugins>
227             <plugin>
228                 <groupId>org.jetbrains.kotlin</groupId>
229                 <artifactId>kotlin-maven-plugin</artifactId>
230                 <version>${kotlin.version}</version>
231                 <executions>
232                     <execution>
233                         <id>compile</id>
234                           <goals>
235                             <goal>compile</goal>
236                         </goals>
237                         <configuration>
238                             <sourceDirs>
239                                 <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
240                                 <sourceDir>${project.basedir}/src/main/java</sourceDir>
241                             </sourceDirs>
242                         </configuration>
243                     </execution>
244                     <execution>
245                         <id>test-compile</id>
246                         <goals>
247                             <goal>test-compile</goal>
248                         </goals>
249                         <configuration>
250                             <sourceDirs>
251                                 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
252                                 <sourceDir>${project.basedir}/src/test/java</sourceDir>
253                             </sourceDirs>
254                         </configuration>
255                     </execution>
256                 </executions>
257             </plugin>
258             <plugin>
259                 <groupId>org.apache.maven.plugins</groupId>
260                 <artifactId>maven-compiler-plugin</artifactId>
261                 <version>3.5.1</version>
262                 <configuration>
263                     <source>${maven.compiler.source}</source>
264                     <target>${maven.compiler.target}</target>
265                 </configuration>
266             </plugin>
267         </plugins>
268     </build>
269 </project>