blob: ea27c63a0d857384666f733b427aafb807eb7d39 [file] [log] [blame]
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +00001<?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 -->
Gary Wu87888da2018-08-24 15:16:48 -070017<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">
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000018 <modelVersion>4.0.0</modelVersion>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000019 <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>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000025 <artifactId>parent</artifactId>
26 <packaging>pom</packaging>
27 <name>Blueprints Processor Parent</name>
28 <description>Blueprints Processor Parent</description>
29 <properties>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000030 <controllerblueprints.version>0.3.0-SNAPSHOT</controllerblueprints.version>
31 <spring.boot.version>2.0.4.RELEASE</spring.boot.version>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000032 <spring.version>5.0.8.RELEASE</spring.version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000033 <kotlin.version>1.2.60</kotlin.version>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000034 <eelf.version>1.0.0</eelf.version>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000035 <springfox.swagger2.version>2.9.2</springfox.swagger2.version>
36 <h2database.version>1.4.197</h2database.version>
37 </properties>
38 <dependencyManagement>
39 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +000040 <!-- 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
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +000073 <!-- 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>
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000117 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
118 <artifactId>resource-dict</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000119 <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
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000134 <!-- 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>
Gary Wu87888da2018-08-24 15:16:48 -0700158
Muthuramalingam, Brinda Santh(bs2796)ee467d72018-08-23 15:54:30 +0000159 </dependency>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000160
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000161 <!-- 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>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000180 </dependency>
181 <dependency>
182 <groupId>commons-collections</groupId>
183 <artifactId>commons-collections</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000184 </dependency>
185 <dependency>
186 <groupId>commons-io</groupId>
187 <artifactId>commons-io</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000188 </dependency>
189 <dependency>
190 <groupId>org.apache.velocity</groupId>
191 <artifactId>velocity</artifactId>
Muthuramalingam, Brinda Santh(bs2796)4b3c8a02018-08-15 21:31:10 +0000192 </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>