blob: a67f305e45804dca19e7a8e125247c3da5a2b5f1 [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Michael Lando5b593492018-07-29 16:13:45 +03002 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Michael Lando451a3402017-02-19 10:28:42 +02003
4 <modelVersion>4.0.0</modelVersion>
5
6 <groupId>org.openecomp.sdc.be</groupId>
7 <artifactId>catalog-model</artifactId>
8
Michael Lando451a3402017-02-19 10:28:42 +02009 <parent>
10 <groupId>org.openecomp.sdc</groupId>
11 <artifactId>sdc-main</artifactId>
Michael Landod8a0dea2018-06-02 19:23:27 +030012 <version>1.3.0-SNAPSHOT</version>
Michael Lando451a3402017-02-19 10:28:42 +020013 </parent>
Michael Lando451a3402017-02-19 10:28:42 +020014
Tal Gitelman51d50f02017-12-10 18:55:03 +020015 <dependencies>
Michael Landoed64b5e2017-06-09 03:19:04 +030016 <!-- Common of SDC -->
Michael Landoc34b77c2017-02-28 19:03:11 +020017 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030018 <groupId>org.openecomp.sdc</groupId>
19 <artifactId>common-app-api</artifactId>
20 <version>${project.version}</version>
Michael Landoc34b77c2017-02-28 19:03:11 +020021 <scope>provided</scope>
22 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +030023
Michael Lando0de99c22017-02-28 10:54:57 +020024 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030025 <groupId>org.openecomp.sdc.be</groupId>
26 <artifactId>common-be</artifactId>
27 <version>${project.version}</version>
Michael Lando0de99c22017-02-28 10:54:57 +020028 <scope>provided</scope>
29 </dependency>
30
Michael Lando2e0ef972017-02-28 01:44:21 +020031 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030032 <groupId>ch.qos.logback</groupId>
33 <artifactId>logback-classic</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030034 <version>${logback.version}</version>
Michael Lando2e0ef972017-02-28 01:44:21 +020035 <scope>provided</scope>
36 </dependency>
37
38 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030039 <groupId>ch.qos.logback</groupId>
40 <artifactId>logback-core</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030041 <version>${logback.version}</version>
Michael Landoed64b5e2017-06-09 03:19:04 +030042 <scope>provided</scope>
43 </dependency>
44
45 <!-- catalog dao -->
46 <dependency>
47 <groupId>org.openecomp.sdc.be</groupId>
48 <artifactId>catalog-dao</artifactId>
49 <version>${project.version}</version>
Michael Lando2e0ef972017-02-28 01:44:21 +020050 <scope>provided</scope>
51 </dependency>
52
Michael Landoc0ac0152017-02-27 23:48:43 +020053 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030054 <groupId>com.google.guava</groupId>
55 <artifactId>guava</artifactId>
56 <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ -->
Michael Landoc0ac0152017-02-27 23:48:43 +020057 <scope>provided</scope>
58 </dependency>
59
60 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030061 <groupId>org.functionaljava</groupId>
62 <artifactId>functionaljava</artifactId>
63 <version>${functionaljava.version}</version>
64 <scope>provided</scope>
65 </dependency>
66
67 <!-- spring -->
68 <dependency>
Michael Landoc0ac0152017-02-27 23:48:43 +020069 <groupId>org.springframework</groupId>
70 <artifactId>spring-beans</artifactId>
71 <version>${spring.version}</version>
72 <scope>provided</scope>
73 </dependency>
74
75 <dependency>
76 <groupId>org.springframework</groupId>
77 <artifactId>spring-context</artifactId>
78 <version>${spring.version}</version>
79 <scope>provided</scope>
80 </dependency>
81
82 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030083 <groupId>javax.validation</groupId>
84 <artifactId>validation-api</artifactId>
85 <version>1.1.0.Final</version>
Michael Landoc0ac0152017-02-27 23:48:43 +020086 </dependency>
87
88 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030089 <groupId>org.hibernate</groupId>
90 <artifactId>hibernate-validator</artifactId>
Tal Gitelman01813432018-09-16 17:11:45 +030091 <version>5.3.6.Final</version>
Michael Landoc0ac0152017-02-27 23:48:43 +020092 </dependency>
93
Michael Landoed64b5e2017-06-09 03:19:04 +030094 <!-- Gson -->
Michael Landoc0ac0152017-02-27 23:48:43 +020095 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +020096 <groupId>com.google.code.gson</groupId>
97 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030098 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020099 <scope>provided</scope>
100 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300101
102 <!-- TITAN -->
Michael Lando451a3402017-02-19 10:28:42 +0200103 <dependency>
104 <groupId>com.thinkaurelius.titan</groupId>
105 <artifactId>titan-core</artifactId>
106 <version>${titan.version}</version>
107 <scope>provided</scope>
108 <exclusions>
109 <exclusion>
110 <groupId>org.json</groupId>
111 <artifactId>json</artifactId>
112 </exclusion>
113 <exclusion>
114 <artifactId>slf4j-log4j12</artifactId>
115 <groupId>org.slf4j</groupId>
116 </exclusion>
Tal Gitelman76783962018-09-06 18:16:24 +0300117 <exclusion>
118 <artifactId>commons-collections</artifactId>
119 <groupId>commons-collections</groupId>
120 </exclusion>
Tal Gitelmana3b79a22018-09-25 17:22:34 +0300121 <exclusion>
122 <artifactId>groovy</artifactId>
123 <groupId>org.codehaus.groovy</groupId>
124 </exclusion>
Michael Lando451a3402017-02-19 10:28:42 +0200125 </exclusions>
126 </dependency>
127
128 <dependency>
Michael Landode67b612018-03-15 16:53:05 +0200129 <groupId>org.onap.sdc.sdc-titan-cassandra</groupId>
Michael Lando5b593492018-07-29 16:13:45 +0300130 <artifactId>sdc-titan-cassandra</artifactId>
Michael Landode67b612018-03-15 16:53:05 +0200131 <version>${sdc.titan.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200132 <scope>provided</scope>
133 <exclusions>
134 <exclusion>
135 <artifactId>slf4j-log4j12</artifactId>
136 <groupId>org.slf4j</groupId>
137 </exclusion>
138 </exclusions>
139 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300140 <!-- TITAN END -->
141
142 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200143 <groupId>org.apache.commons</groupId>
144 <artifactId>commons-lang3</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200145 <version>${lang3.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200146 <scope>provided</scope>
147 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300148
149 <!-- http client -->
Michael Lando451a3402017-02-19 10:28:42 +0200150 <dependency>
151 <groupId>org.apache.httpcomponents</groupId>
152 <artifactId>httpclient</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300153 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200154 <scope>provided</scope>
155 </dependency>
156
157 <dependency>
158 <groupId>org.apache.httpcomponents</groupId>
159 <artifactId>httpcore</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300160 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200161 <scope>provided</scope>
162 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300163
Michael Lando451a3402017-02-19 10:28:42 +0200164 <!-- CASSANDRA -->
165 <dependency>
166 <groupId>com.datastax.cassandra</groupId>
167 <artifactId>cassandra-driver-core</artifactId>
168 <version>${cassandra.driver.version}</version>
169 <scope>provided</scope>
170 </dependency>
171 <dependency>
172 <groupId>com.datastax.cassandra</groupId>
173 <artifactId>cassandra-driver-mapping</artifactId>
174 <version>${cassandra.driver.version}</version>
175 <scope>provided</scope>
176 </dependency>
177 <!-- CASSANDRA END -->
Michael Landoed64b5e2017-06-09 03:19:04 +0300178
Michael Lando451a3402017-02-19 10:28:42 +0200179 <dependency>
180 <groupId>junit</groupId>
181 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300182 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200183 <scope>test</scope>
184 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200185
186 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300187 <groupId>org.mockito</groupId>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200188 <artifactId>mockito-core</artifactId>
Michael Landoa5445102018-03-04 14:53:33 +0200189 <scope>test</scope>
190 </dependency>
Tal Gitelmane849acf2018-06-06 13:56:56 +0300191
192 <dependency>
193 <groupId>org.jmockit</groupId>
194 <artifactId>jmockit</artifactId>
195 <scope>test</scope>
196 </dependency>
197
Michael Landoa5445102018-03-04 14:53:33 +0200198 <dependency>
199 <groupId>org.assertj</groupId>
200 <artifactId>assertj-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300201 <scope>test</scope>
202 </dependency>
203
Michael Lando451a3402017-02-19 10:28:42 +0200204 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300205 <groupId>org.springframework</groupId>
206 <artifactId>spring-test</artifactId>
207 <version>${spring.version}</version>
208 <scope>test</scope>
209 </dependency>
210
211 <dependency>
212 <groupId>org.aspectj</groupId>
213 <artifactId>aspectjrt</artifactId>
214 <version>${aspectj.version}</version>
215 <scope>test</scope>
216 </dependency>
217
218 <dependency>
219 <groupId>org.aspectj</groupId>
220 <artifactId>aspectjweaver</artifactId>
221 <version>${aspectj.version}</version>
222 <scope>test</scope>
223 </dependency>
224
Michael Lando451a3402017-02-19 10:28:42 +0200225 <dependency>
226 <groupId>org.springframework</groupId>
227 <artifactId>spring-web</artifactId>
Michael Landoc0ac0152017-02-27 23:48:43 +0200228 <version>${spring.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200229 <scope>test</scope>
230 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300231
Michael Lando451a3402017-02-19 10:28:42 +0200232 <dependency>
233 <groupId>org.springframework</groupId>
234 <artifactId>spring-tx</artifactId>
235 <scope>test</scope>
236 <version>4.0.7.RELEASE</version>
237 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300238
Michael Lando451a3402017-02-19 10:28:42 +0200239 <dependency>
240 <groupId>org.apache.commons</groupId>
241 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300242 <version>${commons-jci-core.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200243 <scope>test</scope>
244 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +0300245 <dependency>
246 <groupId>org.powermock</groupId>
247 <artifactId>powermock-module-junit4</artifactId>
248 <version>1.7.0RC4</version>
249 <scope>test</scope>
250 </dependency>
Michael Lando75aacbb2017-07-17 21:12:03 +0300251 <dependency>
252 <groupId>org.powermock</groupId>
253 <artifactId>powermock-api-mockito-common</artifactId>
254 <version>1.6.5</version>
255 <scope>test</scope>
256 </dependency>
Tal Gitelmane0199372018-09-18 11:57:53 +0300257
258 <dependency>
259 <groupId>org.codehaus.groovy</groupId>
260 <artifactId>groovy</artifactId>
Tal Gitelmane0199372018-09-18 11:57:53 +0300261 </dependency>
262
Yuli Shlosberg79e36272018-10-02 14:45:26 +0300263 <dependency>
264 <groupId>io.netty</groupId>
265 <artifactId>netty-all</artifactId>
266 </dependency>
267
268 <dependency>
269 <groupId>io.netty</groupId>
270 <artifactId>netty-handler</artifactId>
271 </dependency>
272
Michael Lando5b593492018-07-29 16:13:45 +0300273 </dependencies>
Michael Lando451a3402017-02-19 10:28:42 +0200274 <build>
275 <plugins>
276 <plugin>
277 <groupId>org.apache.maven.plugins</groupId>
278 <artifactId>maven-deploy-plugin</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +0200279 <configuration>
280 <skip>true</skip>
281 </configuration>
282 </plugin>
dekstroza37843cb2018-05-18 14:42:24 +0100283 <plugin>
284 <groupId>com.github.sylvainlaurent.maven</groupId>
285 <artifactId>yaml-json-validator-maven-plugin</artifactId>
286 <executions>
287 <execution>
288 <id>validate</id>
289 <phase>validate</phase>
290 <goals>
291 <goal>validate</goal>
292 </goals>
293 <configuration>
294 <validationSets>
295 <validationSet>
296 <includes>
297 <include>src/main/resources/**/*.y*ml</include>
298 <include>src/test/resources/**/*.y*ml</include>
299 </includes>
300 </validationSet>
301 <validationSet>
302 <includes>
303 <include>src/main/resources/**/*.json</include>
304 <include>src/test/resources/**/*.json</include>
305 </includes>
306 </validationSet>
307 </validationSets>
308 </configuration>
309 </execution>
310 </executions>
311 </plugin>
Michael Lando451a3402017-02-19 10:28:42 +0200312 </plugins>
313 </build>
Michael Lando5b593492018-07-29 16:13:45 +0300314</project>