blob: 10519f94af388eb66b582fb132cb1b19148ef44e [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 Landoed64b5e2017-06-09 03:19:04 +03003
Michael Lando451a3402017-02-19 10:28:42 +02004 <modelVersion>4.0.0</modelVersion>
Michael Landoed64b5e2017-06-09 03:19:04 +03005
Michael Lando451a3402017-02-19 10:28:42 +02006 <artifactId>common-app-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +03007
Michael Lando451a3402017-02-19 10:28:42 +02008 <parent>
9 <groupId>org.openecomp.sdc</groupId>
10 <artifactId>sdc-main</artifactId>
Ofir Sonsino09d87892020-03-12 20:52:42 +020011 <version>1.7.0-SNAPSHOT</version>
Michael Lando451a3402017-02-19 10:28:42 +020012 </parent>
Michael Lando5b593492018-07-29 16:13:45 +030013
Tal Gitelman51d50f02017-12-10 18:55:03 +020014 <dependencies>
Michael Landoc0ac0152017-02-27 23:48:43 +020015 <dependency>
ys969316a9fce2020-01-19 13:50:02 +020016 <groupId>org.onap.sdc.sdc-be-common</groupId>
17 <artifactId>security-util-lib</artifactId>
Yuli Shlosberg47fc40a2020-01-23 11:50:40 +020018 <version>${security.util.lib.version}</version>
Michael Landoc0ac0152017-02-27 23:48:43 +020019 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020020 <!-- functional java -->
Michael Landoed64b5e2017-06-09 03:19:04 +030021 <dependency>
22 <groupId>org.functionaljava</groupId>
23 <artifactId>functionaljava</artifactId>
24 <version>${functionaljava.version}</version>
25 <scope>provided</scope>
26 </dependency>
27
Michael Lando451a3402017-02-19 10:28:42 +020028 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +020029 <groupId>javax.servlet</groupId>
vempod6d12912018-07-09 14:27:57 +030030 <artifactId>javax.servlet-api</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030031 <version>${servlet-api.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020032 <scope>provided</scope>
33 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030034
Michael Lando451a3402017-02-19 10:28:42 +020035 <dependency>
36 <groupId>org.glassfish.jersey.containers</groupId>
37 <artifactId>jersey-container-servlet</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030038 <version>${jersey-bom.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020039 <scope>provided</scope>
40 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030041
Michael Lando451a3402017-02-19 10:28:42 +020042 <!-- yaml to object converter -->
43 <dependency>
44 <groupId>org.yaml</groupId>
45 <artifactId>snakeyaml</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030046 <version>${snakeyaml.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020047 <scope>provided</scope>
48 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030049
50 <!-- listen to file changes -->
Michael Lando451a3402017-02-19 10:28:42 +020051 <dependency>
52 <groupId>org.apache.commons</groupId>
53 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030054 <version>${commons-jci-core.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020055 <scope>provided</scope>
56 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030057
Michael Lando451a3402017-02-19 10:28:42 +020058 <!-- Gson -->
59 <dependency>
60 <groupId>com.google.code.gson</groupId>
61 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030062 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020063 <scope>provided</scope>
64 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030065
66 <!-- http client -->
Michael Lando451a3402017-02-19 10:28:42 +020067 <dependency>
68 <groupId>org.apache.httpcomponents</groupId>
69 <artifactId>httpclient</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030070 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020071 <scope>provided</scope>
72 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030073
Michael Lando451a3402017-02-19 10:28:42 +020074 <dependency>
75 <groupId>org.apache.httpcomponents</groupId>
76 <artifactId>httpcore</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030077 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020078 <scope>provided</scope>
79 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030080
Michael Lando451a3402017-02-19 10:28:42 +020081 <dependency>
82 <groupId>commons-logging</groupId>
83 <artifactId>commons-logging</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030084 <version>${commons-logging}</version>
Michael Lando451a3402017-02-19 10:28:42 +020085 <scope>provided</scope>
86 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030087
Michael Lando451a3402017-02-19 10:28:42 +020088 <dependency>
89 <groupId>commons-codec</groupId>
90 <artifactId>commons-codec</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030091 <version>${commons-codec}</version>
Michael Lando451a3402017-02-19 10:28:42 +020092 <scope>provided</scope>
93 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030094
Michael Lando451a3402017-02-19 10:28:42 +020095 <dependency>
96 <groupId>org.glassfish.jersey.media</groupId>
97 <artifactId>jersey-media-json-jackson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030098 <version>${jersey-bom.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020099 <scope>provided</scope>
100 </dependency>
101
102 <!-- Aspects -->
103 <dependency>
104 <groupId>com.jcabi</groupId>
105 <artifactId>jcabi-aspects</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300106 <version>${jcabi.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200107 <scope>provided</scope>
108 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +0300109
Michael Lando451a3402017-02-19 10:28:42 +0200110 <dependency>
111 <groupId>org.aspectj</groupId>
112 <artifactId>aspectjrt</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200113 <version>${aspectjrt.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200114 <scope>provided</scope>
115 </dependency>
116
117 <dependency>
118 <groupId>org.apache.commons</groupId>
119 <artifactId>commons-lang3</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300120 <version>${lang3.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200121 <scope>provided</scope>
122 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300123
Michael Lando451a3402017-02-19 10:28:42 +0200124 <dependency>
125 <groupId>com.fasterxml.jackson.core</groupId>
126 <artifactId>jackson-databind</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200127 <version>${jackson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200128 <scope>provided</scope>
129 </dependency>
130
131 <dependency>
132 <groupId>com.fasterxml.jackson.core</groupId>
133 <artifactId>jackson-core</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200134 <version>${jackson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200135 <scope>provided</scope>
136 </dependency>
137 <!-- logging -->
138 <dependency>
139 <groupId>ch.qos.logback</groupId>
140 <artifactId>logback-classic</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200141 <version>${logback.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200142 <scope>provided</scope>
143 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200144 <!-- logging end -->
Michael Lando5b593492018-07-29 16:13:45 +0300145
Michael Lando451a3402017-02-19 10:28:42 +0200146 <dependency>
aribeiro608be262019-10-03 15:44:48 +0100147 <groupId>org.projectlombok</groupId>
148 <artifactId>lombok</artifactId>
149 <version>${lombok.version}</version>
150 </dependency>
151
152 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300153 <groupId>com.google.guava</groupId>
154 <artifactId>guava</artifactId>
155 <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ -->
156 <scope>provided</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200157 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300158 <!-- System metrics -->
159 <dependency>
160 <groupId>org.fusesource</groupId>
161 <artifactId>sigar</artifactId>
162 <version>${sigar.version}</version>
163 <scope>provided</scope>
164 </dependency>
165
Michael Lando451a3402017-02-19 10:28:42 +0200166 <dependency>
andre.schmidbf5eeb22019-09-27 13:27:11 +0100167 <groupId>org.hamcrest</groupId>
168 <artifactId>hamcrest</artifactId>
169 <version>${hamcrest.version}</version>
170 <scope>test</scope>
171 </dependency>
172
173 <dependency>
174 <groupId>org.hamcrest</groupId>
175 <artifactId>hamcrest-library</artifactId>
176 <version>${hamcrest.version}</version>
177 <scope>test</scope>
178 </dependency>
179
180 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200181 <groupId>junit</groupId>
182 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300183 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200184 <scope>test</scope>
185 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300186
Michael Lando451a3402017-02-19 10:28:42 +0200187 <dependency>
Baumel, Dvir (db384r)3e879322020-03-23 16:21:05 +0200188 <groupId>org.junit.jupiter</groupId>
189 <artifactId>junit-jupiter</artifactId>
190 <version>${junitJupiter.version}</version>
191 <scope>test</scope>
192 </dependency>
193
194 <dependency>
195 <groupId>org.mockito</groupId>
196 <artifactId>mockito-junit-jupiter</artifactId>
197 <version>${mockitoJupiter.version}</version>
198 <scope>test</scope>
199 </dependency>
200
201 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200202 <groupId>org.mockito</groupId>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200203 <artifactId>mockito-core</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +0200204 <scope>test</scope>
205 </dependency>
206
Tal Gitelman503be6d2018-09-05 17:47:16 +0300207 <dependency>
208 <groupId>com.google.code.bean-matchers</groupId>
209 <artifactId>bean-matchers</artifactId>
210 <version>${bean-matchers.version}</version>
211 <scope>test</scope>
212 </dependency>
213
Michael Lando451a3402017-02-19 10:28:42 +0200214 <!-- jsoup HTML parser library @ http://jsoup.org/ -->
215 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300216 <groupId>org.jsoup</groupId>
217 <artifactId>jsoup</artifactId>
218 <version>1.8.3</version>
Michael Lando451a3402017-02-19 10:28:42 +0200219 </dependency>
220
221 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300222 <groupId>commons-validator</groupId>
Michael Lando451a3402017-02-19 10:28:42 +0200223 <artifactId>commons-validator</artifactId>
Gitelman, Tal (tg851x)bfe4bd12018-03-13 00:27:13 +0200224 <version>1.6</version>
Tal Gitelman76783962018-09-06 18:16:24 +0300225 <exclusions>
ys969316a9fce2020-01-19 13:50:02 +0200226 <exclusion>
227 <artifactId>commons-collections</artifactId>
228 <groupId>commons-collections</groupId>
229 </exclusion>
230 </exclusions>
Michael Lando451a3402017-02-19 10:28:42 +0200231 </dependency>
232
ys969316a9fce2020-01-19 13:50:02 +0200233 <dependency>
234 <artifactId>commons-collections</artifactId>
235 <groupId>commons-collections</groupId>
236 <version>3.2.2</version>
237 </dependency>
Tal Gitelman76783962018-09-06 18:16:24 +0300238
Michael Lando451a3402017-02-19 10:28:42 +0200239 <dependency>
240 <groupId>org.codehaus.jettison</groupId>
241 <artifactId>jettison</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300242 <version>1.3.3</version>
Michael Lando451a3402017-02-19 10:28:42 +0200243 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300244
Michael Lando451a3402017-02-19 10:28:42 +0200245 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300246 <groupId>de.ruedigermoeller</groupId>
247 <artifactId>fst</artifactId>
248 <version>2.47</version>
249 <scope>compile</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200250 </dependency>
ys969316a9fce2020-01-19 13:50:02 +0200251 <dependency>
252 <groupId>org.openecomp.sdc</groupId>
253 <artifactId>common-app-logging</artifactId>
254 <version>${project.version}</version>
255 <scope>compile</scope>
256 </dependency>
shrek20000594c412020-01-30 14:52:49 +0200257 <dependency>
258 <groupId>com.datastax.cassandra</groupId>
259 <artifactId>cassandra-driver-mapping</artifactId>
260 <version>${cassandra.driver.version}</version>
261 <scope>compile</scope>
262 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200263 </dependencies>
264
Michael Landoed64b5e2017-06-09 03:19:04 +0300265 <build>
266 <plugins>
267 <plugin>
dekstroza37843cb2018-05-18 14:42:24 +0100268 <groupId>com.github.sylvainlaurent.maven</groupId>
269 <artifactId>yaml-json-validator-maven-plugin</artifactId>
270 <executions>
271 <execution>
272 <id>validate</id>
273 <phase>validate</phase>
274 <goals>
275 <goal>validate</goal>
276 </goals>
277 <configuration>
278 <validationSets>
279 <validationSet>
280 <includes>
281 <include>src/main/resources/**/*.y*ml</include>
282 <include>src/test/resources/**/*.y*ml</include>
283 </includes>
284 </validationSet>
285 <validationSet>
286 <includes>
287 <include>src/main/resources/**/*.json</include>
288 <include>src/test/resources/**/*.json</include>
289 </includes>
290 </validationSet>
291 </validationSets>
292 </configuration>
293 </execution>
294 </executions>
295 </plugin>
Michael Landoed64b5e2017-06-09 03:19:04 +0300296 </plugins>
297 </build>
Michael Lando5b593492018-07-29 16:13:45 +0300298</project>