Merge "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   ~  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>blueprintsprocessor</artifactId>
24         <version>0.3.0-SNAPSHOT</version>
25     </parent>
26     <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
27     <artifactId>parent</artifactId>
28     <packaging>pom</packaging>
29     <name>Blueprints Processor Parent</name>
30     <description>Blueprints Processor Parent</description>
31     <properties>
32         <controllerblueprints.version>0.3.0-SNAPSHOT</controllerblueprints.version>
33         <spring.boot.version>2.0.4.RELEASE</spring.boot.version>
34         <spring.version>5.0.8.RELEASE</spring.version>
35         <kotlin.version>1.2.60</kotlin.version>
36         <eelf.version>1.0.0</eelf.version>
37         <springfox.swagger2.version>2.9.2</springfox.swagger2.version>
38         <h2database.version>1.4.197</h2database.version>
39     </properties>
40     <dependencyManagement>
41         <dependencies>
42             <!-- Spring Boot -->
43             <dependency>
44                 <groupId>org.springframework.boot</groupId>
45                 <artifactId>spring-boot-starter-parent</artifactId>
46                 <version>${spring.boot.version}</version>
47                 <type>pom</type>
48                 <scope>import</scope>
49             </dependency>
50
51             <!-- Logging Dependencies -->
52             <dependency>
53                 <groupId>com.att.eelf</groupId>
54                 <artifactId>eelf-core</artifactId>
55                 <version>${eelf.version}</version>
56             </dependency>
57
58             <!-- Kotlin Dependencies -->
59             <dependency>
60                 <groupId>org.jetbrains.kotlin</groupId>
61                 <artifactId>kotlin-stdlib</artifactId>
62                 <version>${kotlin.version}</version>
63             </dependency>
64             <dependency>
65                 <groupId>org.jetbrains.kotlin</groupId>
66                 <artifactId>kotlin-stdlib-jdk8</artifactId>
67                 <version>${kotlin.version}</version>
68             </dependency>
69             <dependency>
70                 <groupId>org.jetbrains.kotlin</groupId>
71                 <artifactId>kotlin-reflect</artifactId>
72                 <version>${kotlin.version}</version>
73             </dependency>
74
75             <!-- Application Module Dependencies -->
76             <dependency>
77                 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
78                 <artifactId>db-lib</artifactId>
79                 <version>${project.version}</version>
80             </dependency>
81             <dependency>
82                 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
83                 <artifactId>rest-lib</artifactId>
84                 <version>${project.version}</version>
85             </dependency>
86             <dependency>
87                 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
88                 <artifactId>core</artifactId>
89                 <version>${project.version}</version>
90             </dependency>
91             <dependency>
92                 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
93                 <artifactId>db-service</artifactId>
94                 <version>${project.version}</version>
95             </dependency>
96             <dependency>
97                 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
98                 <artifactId>execution-service</artifactId>
99                 <version>${project.version}</version>
100             </dependency>
101             <dependency>
102                 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
103                 <artifactId>resolution-service</artifactId>
104                 <version>${project.version}</version>
105             </dependency>
106             <dependency>
107                 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
108                 <artifactId>resource-api</artifactId>
109                 <version>${project.version}</version>
110             </dependency>
111             <dependency>
112                 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
113                 <artifactId>selfservice-api</artifactId>
114                 <version>${project.version}</version>
115             </dependency>
116
117             <!-- Application Component Dependency -->
118             <dependency>
119                 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
120                 <artifactId>resource-dict</artifactId>
121                 <version>${controllerblueprints.version}</version>
122             </dependency>
123
124             <!--Swagger Dependencies -->
125             <dependency>
126                 <groupId>io.springfox</groupId>
127                 <artifactId>springfox-swagger2</artifactId>
128                 <version>${springfox.swagger2.version}</version>
129             </dependency>
130             <dependency>
131                 <groupId>io.springfox</groupId>
132                 <artifactId>springfox-swagger-ui</artifactId>
133                 <version>${springfox.swagger2.version}</version>
134             </dependency>
135
136             <!-- Common Libs -->
137             <dependency>
138                 <groupId>org.apache.commons</groupId>
139                 <artifactId>commons-lang3</artifactId>
140                 <version>3.2.1</version>
141             </dependency>
142             <dependency>
143                 <groupId>commons-collections</groupId>
144                 <artifactId>commons-collections</artifactId>
145                 <version>3.2.2</version>
146             </dependency>
147             <dependency>
148                 <groupId>commons-io</groupId>
149                 <artifactId>commons-io</artifactId>
150                 <version>2.6</version>
151             </dependency>
152             <dependency>
153                 <groupId>org.apache.velocity</groupId>
154                 <artifactId>velocity</artifactId>
155                 <version>1.7</version>
156             </dependency>
157             <dependency>
158                 <groupId>com.google.guava</groupId>
159                 <artifactId>guava</artifactId>
160
161             </dependency>
162
163             <!-- Database -->
164             <dependency>
165                 <groupId>com.h2database</groupId>
166                 <artifactId>h2</artifactId>
167                 <version>${h2database.version}</version>
168             </dependency>
169             <!-- Test Dependency -->
170             <dependency>
171                 <groupId>org.powermock</groupId>
172                 <artifactId>powermock-api-mockito2</artifactId>
173                 <version>1.7.4</version>
174                 <scope>test</scope>
175             </dependency>
176             <dependency>
177                 <groupId>org.jetbrains.kotlin</groupId>
178                 <artifactId>kotlin-test</artifactId>
179                 <version>${kotlin.version}</version>
180                 <scope>test</scope>
181             </dependency>
182         </dependencies>
183     </dependencyManagement>
184     <dependencies>
185
186         <!-- Application Component Dependency -->
187         <dependency>
188             <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
189             <artifactId>resource-dict</artifactId>
190         </dependency>
191     </dependencies>
192     <build>
193         <plugins>
194             <plugin>
195                 <groupId>org.jetbrains.kotlin</groupId>
196                 <artifactId>kotlin-maven-plugin</artifactId>
197                 <version>${kotlin.version}</version>
198                 <executions>
199                     <execution>
200                         <id>compile</id>
201                           <goals>
202                             <goal>compile</goal>
203                         </goals>
204                         <configuration>
205                             <sourceDirs>
206                                 <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
207                                 <sourceDir>${project.basedir}/src/main/java</sourceDir>
208                             </sourceDirs>
209                         </configuration>
210                     </execution>
211                     <execution>
212                         <id>test-compile</id>
213                         <goals>
214                             <goal>test-compile</goal>
215                         </goals>
216                         <configuration>
217                             <sourceDirs>
218                                 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
219                                 <sourceDir>${project.basedir}/src/test/java</sourceDir>
220                             </sourceDirs>
221                         </configuration>
222                     </execution>
223                 </executions>
224             </plugin>
225             <plugin>
226                 <groupId>org.apache.maven.plugins</groupId>
227                 <artifactId>maven-compiler-plugin</artifactId>
228                 <version>3.5.1</version>
229                 <configuration>
230                     <source>${maven.compiler.source}</source>
231                     <target>${maven.compiler.target}</target>
232                 </configuration>
233             </plugin>
234         </plugins>
235     </build>
236 </project>