blob: 8a9dc1e2c60324dcfc6afe1f66857e663b68bac7 [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>
188 <groupId>org.mockito</groupId>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200189 <artifactId>mockito-core</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +0200190 <scope>test</scope>
191 </dependency>
192
Tal Gitelman503be6d2018-09-05 17:47:16 +0300193 <dependency>
194 <groupId>com.google.code.bean-matchers</groupId>
195 <artifactId>bean-matchers</artifactId>
196 <version>${bean-matchers.version}</version>
197 <scope>test</scope>
198 </dependency>
199
Michael Lando451a3402017-02-19 10:28:42 +0200200 <!-- jsoup HTML parser library @ http://jsoup.org/ -->
201 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300202 <groupId>org.jsoup</groupId>
203 <artifactId>jsoup</artifactId>
204 <version>1.8.3</version>
Michael Lando451a3402017-02-19 10:28:42 +0200205 </dependency>
206
207 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300208 <groupId>commons-validator</groupId>
Michael Lando451a3402017-02-19 10:28:42 +0200209 <artifactId>commons-validator</artifactId>
Gitelman, Tal (tg851x)bfe4bd12018-03-13 00:27:13 +0200210 <version>1.6</version>
Tal Gitelman76783962018-09-06 18:16:24 +0300211 <exclusions>
ys969316a9fce2020-01-19 13:50:02 +0200212 <exclusion>
213 <artifactId>commons-collections</artifactId>
214 <groupId>commons-collections</groupId>
215 </exclusion>
216 </exclusions>
Michael Lando451a3402017-02-19 10:28:42 +0200217 </dependency>
218
ys969316a9fce2020-01-19 13:50:02 +0200219 <dependency>
220 <artifactId>commons-collections</artifactId>
221 <groupId>commons-collections</groupId>
222 <version>3.2.2</version>
223 </dependency>
Tal Gitelman76783962018-09-06 18:16:24 +0300224
Michael Lando451a3402017-02-19 10:28:42 +0200225 <dependency>
226 <groupId>org.codehaus.jettison</groupId>
227 <artifactId>jettison</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300228 <version>1.3.3</version>
Michael Lando451a3402017-02-19 10:28:42 +0200229 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300230
Michael Lando451a3402017-02-19 10:28:42 +0200231 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300232 <groupId>de.ruedigermoeller</groupId>
233 <artifactId>fst</artifactId>
234 <version>2.47</version>
235 <scope>compile</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200236 </dependency>
ys969316a9fce2020-01-19 13:50:02 +0200237 <dependency>
238 <groupId>org.openecomp.sdc</groupId>
239 <artifactId>common-app-logging</artifactId>
240 <version>${project.version}</version>
241 <scope>compile</scope>
242 </dependency>
shrek20000594c412020-01-30 14:52:49 +0200243 <dependency>
244 <groupId>com.datastax.cassandra</groupId>
245 <artifactId>cassandra-driver-mapping</artifactId>
246 <version>${cassandra.driver.version}</version>
247 <scope>compile</scope>
248 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200249 </dependencies>
250
Michael Landoed64b5e2017-06-09 03:19:04 +0300251 <build>
252 <plugins>
253 <plugin>
dekstroza37843cb2018-05-18 14:42:24 +0100254 <groupId>com.github.sylvainlaurent.maven</groupId>
255 <artifactId>yaml-json-validator-maven-plugin</artifactId>
256 <executions>
257 <execution>
258 <id>validate</id>
259 <phase>validate</phase>
260 <goals>
261 <goal>validate</goal>
262 </goals>
263 <configuration>
264 <validationSets>
265 <validationSet>
266 <includes>
267 <include>src/main/resources/**/*.y*ml</include>
268 <include>src/test/resources/**/*.y*ml</include>
269 </includes>
270 </validationSet>
271 <validationSet>
272 <includes>
273 <include>src/main/resources/**/*.json</include>
274 <include>src/test/resources/**/*.json</include>
275 </includes>
276 </validationSet>
277 </validationSets>
278 </configuration>
279 </execution>
280 </executions>
281 </plugin>
Michael Landoed64b5e2017-06-09 03:19:04 +0300282 </plugins>
283 </build>
Michael Lando5b593492018-07-29 16:13:45 +0300284</project>