blob: 625216e8bb2a5370d9e5e22c2a5e09df9d08d618 [file] [log] [blame]
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ~ Copyright © 2017-2018 AT&T Intellectual Property.
4 ~
Brinda Santhe4d1a922018-08-23 23:34:05 -04005 ~ Modifications Copyright © 2018 IBM.
6 ~
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +00007 ~ 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 -->
Gary Wu5de5c412018-08-24 15:16:48 -070019<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)8bcc7272018-08-15 21:31:10 +000020 <modelVersion>4.0.0</modelVersion>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000021 <parent>
22 <groupId>org.onap.ccsdk.apps</groupId>
23 <artifactId>blueprintsprocessor</artifactId>
Timoney, Dan (dt5972)71ed2c92018-10-25 10:34:51 -040024 <version>0.4.0-SNAPSHOT</version>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000025 </parent>
26 <groupId>org.onap.ccsdk.apps.blueprintsprocessor</groupId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +000027 <artifactId>parent</artifactId>
28 <packaging>pom</packaging>
29 <name>Blueprints Processor Parent</name>
30 <description>Blueprints Processor Parent</description>
31 <properties>
Timoney, Dan (dt5972)67390592018-09-27 16:26:45 -040032 <controllerblueprints.version>0.3.1-SNAPSHOT</controllerblueprints.version>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +000033 <spring.boot.version>2.0.4.RELEASE</spring.boot.version>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000034 <spring.version>5.0.8.RELEASE</spring.version>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +000035 <kotlin.version>1.2.60</kotlin.version>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000036 <eelf.version>1.0.0</eelf.version>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +000037 <springfox.swagger2.version>2.9.2</springfox.swagger2.version>
38 <h2database.version>1.4.197</h2database.version>
39 </properties>
40 <dependencyManagement>
41 <dependencies>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +000042 <!-- 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
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +000075 <!-- 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>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +0000119 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
120 <artifactId>resource-dict</artifactId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000121 <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
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +0000136 <!-- 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>
Sandeep J032778f2018-09-21 15:44:52 +0530160 <version>26.0-jre</version>
Muthuramalingam, Brinda Santh(bs2796)d3efe722018-08-23 15:54:30 +0000161 </dependency>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000162
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000163 <!-- Database -->
164 <dependency>
165 <groupId>com.h2database</groupId>
166 <artifactId>h2</artifactId>
167 <version>${h2database.version}</version>
168 </dependency>
169 <!-- Test Dependency -->
170 <dependency>
Brinda Santhe4d1a922018-08-23 23:34:05 -0400171 <groupId>org.powermock</groupId>
172 <artifactId>powermock-api-mockito2</artifactId>
173 <version>1.7.4</version>
174 <scope>test</scope>
175 </dependency>
176 <dependency>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000177 <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>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000185
Brinda Santhe4d1a922018-08-23 23:34:05 -0400186 <!-- Application Component Dependency -->
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000187 <dependency>
Brinda Santhe4d1a922018-08-23 23:34:05 -0400188 <groupId>org.onap.ccsdk.apps.controllerblueprints</groupId>
189 <artifactId>resource-dict</artifactId>
Muthuramalingam, Brinda Santh(bs2796)8bcc7272018-08-15 21:31:10 +0000190 </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>