blob: 7308e9d2ae268af75a0d3380bc3d62711a49fd38 [file] [log] [blame]
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +00001<?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 -->
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -050019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +000021 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.onap.ccsdk.apps</groupId>
24 <artifactId>components</artifactId>
Timoney, Dan (dt5972)6f870c22018-10-25 10:34:51 -040025 <version>0.4.0-SNAPSHOT</version>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +000026 </parent>
27 <groupId>org.onap.ccsdk.apps.components</groupId>
28 <artifactId>parent</artifactId>
29 <name>App Components Parent</name>
30 <packaging>pom</packaging>
31 <properties>
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -050032 <spring.boot.version>2.0.6.RELEASE</spring.boot.version>
33 <spring.version>5.0.10.RELEASE</spring.version>
34 <kotlin.version>1.3.0</kotlin.version>
35 <kotlin.couroutines.version>1.0.1</kotlin.couroutines.version>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +000036 <eelf.version>1.0.0</eelf.version>
37 <guava.version>26.0-jre</guava.version>
38 <springfox.swagger2.version>2.9.2</springfox.swagger2.version>
39 <h2database.version>1.4.197</h2database.version>
Timoney, Dan (dt5972)6f870c22018-10-25 10:34:51 -040040 <onap.logger.slf4j>1.2.2</onap.logger.slf4j>
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -050041 <powermock.version>1.7.4</powermock.version>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +000042 </properties>
43 <dependencyManagement>
44 <dependencies>
45 <!-- Spring boot -->
46 <dependency>
47 <groupId>org.springframework.boot</groupId>
48 <artifactId>spring-boot-dependencies</artifactId>
49 <version>${spring.boot.version}</version>
50 <type>pom</type>
51 <scope>import</scope>
52 </dependency>
53
54 <dependency>
55 <groupId>com.att.eelf</groupId>
56 <artifactId>eelf-core</artifactId>
57 <version>${eelf.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>org.onap.logging-analytics</groupId>
61 <artifactId>logging-slf4j</artifactId>
62 <version>${onap.logger.slf4j}</version>
63 </dependency>
64
65 <!--Swagger Dependencies -->
66 <dependency>
67 <groupId>io.springfox</groupId>
68 <artifactId>springfox-swagger2</artifactId>
69 <version>${springfox.swagger2.version}</version>
70 </dependency>
71 <dependency>
72 <groupId>io.springfox</groupId>
73 <artifactId>springfox-swagger-ui</artifactId>
74 <version>${springfox.swagger2.version}</version>
75 </dependency>
76
77 <dependency>
78 <groupId>org.apache.commons</groupId>
79 <artifactId>commons-lang3</artifactId>
80 <version>3.2.1</version>
81 </dependency>
82 <dependency>
83 <groupId>commons-collections</groupId>
84 <artifactId>commons-collections</artifactId>
85 <version>3.2.2</version>
86 </dependency>
87 <dependency>
88 <groupId>commons-io</groupId>
89 <artifactId>commons-io</artifactId>
90 <version>2.6</version>
91 </dependency>
92 <dependency>
93 <groupId>org.apache.velocity</groupId>
94 <artifactId>velocity</artifactId>
95 <version>1.7</version>
96 </dependency>
97 <dependency>
98 <groupId>com.google.guava</groupId>
99 <artifactId>guava</artifactId>
100 <version>${guava.version}</version>
101 </dependency>
102
103 <!-- Kotlin Dependencies -->
104 <dependency>
105 <groupId>org.jetbrains.kotlin</groupId>
106 <artifactId>kotlin-stdlib</artifactId>
107 <version>${kotlin.version}</version>
108 </dependency>
109 <dependency>
110 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -0500111 <artifactId>kotlinx-couroutines-core</artifactId>
112 <version>${kotlin.couroutines.version}</version>
113 </dependency>
114 <dependency>
115 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000116 <artifactId>kotlin-reflect</artifactId>
117 <version>${kotlin.version}</version>
118 </dependency>
119 <dependency>
120 <groupId>org.jetbrains.kotlin</groupId>
121 <artifactId>kotlin-stdlib-jdk8</artifactId>
122 <version>${kotlin.version}</version>
123 </dependency>
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -0500124 <dependency>
125 <groupId>org.jetbrains.kotlin</groupId>
126 <artifactId>kotlin-stdlib-jdk7</artifactId>
127 <version>${kotlin.version}</version>
128 </dependency>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000129
130
131 <!-- Database -->
132 <dependency>
133 <groupId>com.h2database</groupId>
134 <artifactId>h2</artifactId>
135 <version>${h2database.version}</version>
136 </dependency>
137
138
139 <!-- Application Components -->
140 <dependency>
141 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
142 <artifactId>core</artifactId>
143 <version>${project.version}</version>
144 </dependency>
145 <dependency>
146 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000147 <artifactId>resource-dict</artifactId>
148 <version>${project.version}</version>
149 </dependency>
150
151 <!-- Testing Dependencies -->
152 <dependency>
153 <groupId>org.powermock</groupId>
154 <artifactId>powermock-api-mockito2</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -0500155 <version>${powermock.version}</version>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000156 <scope>test</scope>
157 </dependency>
158 <dependency>
159 <groupId>org.jetbrains.kotlin</groupId>
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -0500160 <artifactId>kotlin-test-junit</artifactId>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000161 <version>${kotlin.version}</version>
162 <scope>test</scope>
163 </dependency>
164 </dependencies>
165 </dependencyManagement>
166
167 <dependencies>
168 <dependency>
169 <groupId>com.att.eelf</groupId>
170 <artifactId>eelf-core</artifactId>
171 </dependency>
172 <dependency>
173 <groupId>org.onap.logging-analytics</groupId>
174 <artifactId>logging-slf4j</artifactId>
175 </dependency>
176 <dependency>
177 <groupId>org.apache.commons</groupId>
178 <artifactId>commons-lang3</artifactId>
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -0500179 </dependency>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000180 <dependency>
181 <groupId>commons-collections</groupId>
182 <artifactId>commons-collections</artifactId>
183 </dependency>
184 <dependency>
185 <groupId>commons-io</groupId>
186 <artifactId>commons-io</artifactId>
187 </dependency>
188 <dependency>
189 <groupId>com.jayway.jsonpath</groupId>
190 <artifactId>json-path</artifactId>
191 </dependency>
Muthuramalingam, Brinda Santh(bs2796)c4dcf1a2018-11-10 11:54:05 -0500192 <dependency>
193 <groupId>com.google.guava</groupId>
194 <artifactId>guava</artifactId>
195 </dependency>
Muthuramalingam, Brinda Santh(bs2796)052b7bd2018-09-04 20:24:35 +0000196 <dependency>
197 <groupId>io.springfox</groupId>
198 <artifactId>springfox-swagger2</artifactId>
199 </dependency>
200 <dependency>
201 <groupId>io.springfox</groupId>
202 <artifactId>springfox-swagger-ui</artifactId>
203 </dependency>
204 <dependency>
205 <groupId>org.jetbrains.kotlin</groupId>
206 <artifactId>kotlin-stdlib</artifactId>
207 </dependency>
208 <dependency>
209 <groupId>org.jetbrains.kotlin</groupId>
210 <artifactId>kotlin-stdlib-jdk8</artifactId>
211 </dependency>
212 <dependency>
213 <groupId>com.fasterxml.jackson.module</groupId>
214 <artifactId>jackson-module-kotlin</artifactId>
215 </dependency>
216 </dependencies>
217
218 <build>
219 <plugins>
220 <plugin>
221 <groupId>org.apache.maven.plugins</groupId>
222 <artifactId>maven-source-plugin</artifactId>
223 <version>3.0.1</version>
224 <executions>
225 <execution>
226 <id>attach-sources</id>
227 <goals>
228 <goal>jar</goal>
229 </goals>
230 </execution>
231 </executions>
232 </plugin>
233
234 <plugin>
235 <artifactId>kotlin-maven-plugin</artifactId>
236 <groupId>org.jetbrains.kotlin</groupId>
237 <version>${kotlin.version}</version>
238 <executions>
239 <execution>
240 <id>compile</id>
241 <goals>
242 <goal>compile</goal>
243 </goals>
244 <configuration>
245 <sourceDirs>
246 <sourceDir>${project.basedir}/src/main/kotlin</sourceDir>
247 <sourceDir>${project.basedir}/src/main/java</sourceDir>
248 </sourceDirs>
249 </configuration>
250 </execution>
251 <execution>
252 <id>test-compile</id>
253 <goals>
254 <goal>test-compile</goal>
255 </goals>
256 <configuration>
257 <sourceDirs>
258 <sourceDir>${project.basedir}/src/test/kotlin</sourceDir>
259 <sourceDir>${project.basedir}/src/test/java</sourceDir>
260 </sourceDirs>
261 </configuration>
262 </execution>
263 </executions>
264 </plugin>
265 <plugin>
266 <groupId>org.apache.maven.plugins</groupId>
267 <artifactId>maven-compiler-plugin</artifactId>
268 <version>3.5.1</version>
269 <configuration>
270 <source>${maven.compiler.source}</source>
271 <target>${maven.compiler.target}</target>
272 </configuration>
273 <executions>
274 <!-- Replacing default-compile as it is treated specially by maven -->
275 <execution>
276 <id>default-compile</id>
277 <phase>none</phase>
278 </execution>
279 <!-- Replacing default-testCompile as it is treated specially by maven -->
280 <execution>
281 <id>default-testCompile</id>
282 <phase>none</phase>
283 </execution>
284 <execution>
285 <id>java-compile</id>
286 <phase>compile</phase>
287 <goals>
288 <goal>compile</goal>
289 </goals>
290 </execution>
291 <execution>
292 <id>java-test-compile</id>
293 <phase>test-compile</phase>
294 <goals>
295 <goal>testCompile</goal>
296 </goals>
297 </execution>
298 </executions>
299 </plugin>
300 </plugins>
301 </build>
302</project>