blob: 62bfb24b288fef46666fec5b146b58baa9e8abc7 [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 Sonsino145e9602019-10-29 11:07:28 +020011 <version>1.6.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>
Michael Landoed64b5e2017-06-09 03:19:04 +030016 <groupId>org.openecomp.sdc</groupId>
17 <artifactId>security-utils</artifactId>
18 <version>${project.version}</version>
Michael Landoc0ac0152017-02-27 23:48:43 +020019 <scope>provided</scope>
20 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020021 <!-- functional java -->
Michael Landoed64b5e2017-06-09 03:19:04 +030022 <dependency>
23 <groupId>org.functionaljava</groupId>
24 <artifactId>functionaljava</artifactId>
25 <version>${functionaljava.version}</version>
26 <scope>provided</scope>
27 </dependency>
28
Michael Lando451a3402017-02-19 10:28:42 +020029 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +020030 <groupId>javax.servlet</groupId>
vempod6d12912018-07-09 14:27:57 +030031 <artifactId>javax.servlet-api</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030032 <version>${servlet-api.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020033 <scope>provided</scope>
34 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030035
Michael Lando451a3402017-02-19 10:28:42 +020036 <dependency>
37 <groupId>org.glassfish.jersey.containers</groupId>
38 <artifactId>jersey-container-servlet</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030039 <version>${jersey-bom.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020040 <scope>provided</scope>
41 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030042
Michael Lando451a3402017-02-19 10:28:42 +020043 <!-- yaml to object converter -->
44 <dependency>
45 <groupId>org.yaml</groupId>
46 <artifactId>snakeyaml</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030047 <version>${snakeyaml.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020048 <scope>provided</scope>
49 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030050
51 <!-- listen to file changes -->
Michael Lando451a3402017-02-19 10:28:42 +020052 <dependency>
53 <groupId>org.apache.commons</groupId>
54 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030055 <version>${commons-jci-core.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020056 <scope>provided</scope>
57 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030058
Michael Lando451a3402017-02-19 10:28:42 +020059 <!-- Gson -->
60 <dependency>
61 <groupId>com.google.code.gson</groupId>
62 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030063 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020064 <scope>provided</scope>
65 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030066
67 <!-- http client -->
Michael Lando451a3402017-02-19 10:28:42 +020068 <dependency>
69 <groupId>org.apache.httpcomponents</groupId>
70 <artifactId>httpclient</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030071 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020072 <scope>provided</scope>
73 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030074
Michael Lando451a3402017-02-19 10:28:42 +020075 <dependency>
76 <groupId>org.apache.httpcomponents</groupId>
77 <artifactId>httpcore</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030078 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020079 <scope>provided</scope>
80 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030081
Michael Lando451a3402017-02-19 10:28:42 +020082 <dependency>
83 <groupId>commons-logging</groupId>
84 <artifactId>commons-logging</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030085 <version>${commons-logging}</version>
Michael Lando451a3402017-02-19 10:28:42 +020086 <scope>provided</scope>
87 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030088
Michael Lando451a3402017-02-19 10:28:42 +020089 <dependency>
90 <groupId>commons-codec</groupId>
91 <artifactId>commons-codec</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +030092 <version>${commons-codec}</version>
Michael Lando451a3402017-02-19 10:28:42 +020093 <scope>provided</scope>
94 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030095
Michael Lando451a3402017-02-19 10:28:42 +020096 <dependency>
97 <groupId>org.glassfish.jersey.media</groupId>
98 <artifactId>jersey-media-json-jackson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030099 <version>${jersey-bom.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200100 <scope>provided</scope>
101 </dependency>
102
103 <!-- Aspects -->
104 <dependency>
105 <groupId>com.jcabi</groupId>
106 <artifactId>jcabi-aspects</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300107 <version>${jcabi.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200108 <scope>provided</scope>
109 </dependency>
Michael Lando5b593492018-07-29 16:13:45 +0300110
Michael Lando451a3402017-02-19 10:28:42 +0200111 <dependency>
112 <groupId>org.aspectj</groupId>
113 <artifactId>aspectjrt</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200114 <version>${aspectjrt.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200115 <scope>provided</scope>
116 </dependency>
117
118 <dependency>
119 <groupId>org.apache.commons</groupId>
120 <artifactId>commons-lang3</artifactId>
Michael Lando5b593492018-07-29 16:13:45 +0300121 <version>${lang3.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200122 <scope>provided</scope>
123 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300124
Michael Lando451a3402017-02-19 10:28:42 +0200125 <dependency>
126 <groupId>com.fasterxml.jackson.core</groupId>
127 <artifactId>jackson-databind</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200128 <version>${jackson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200129 <scope>provided</scope>
130 </dependency>
131
132 <dependency>
133 <groupId>com.fasterxml.jackson.core</groupId>
134 <artifactId>jackson-core</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200135 <version>${jackson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200136 <scope>provided</scope>
137 </dependency>
138 <!-- logging -->
139 <dependency>
140 <groupId>ch.qos.logback</groupId>
141 <artifactId>logback-classic</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200142 <version>${logback.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200143 <scope>provided</scope>
144 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200145 <!-- logging end -->
Michael Lando5b593492018-07-29 16:13:45 +0300146
Michael Lando451a3402017-02-19 10:28:42 +0200147 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300148 <groupId>com.google.guava</groupId>
149 <artifactId>guava</artifactId>
150 <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ -->
151 <scope>provided</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200152 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300153 <!-- System metrics -->
154 <dependency>
155 <groupId>org.fusesource</groupId>
156 <artifactId>sigar</artifactId>
157 <version>${sigar.version}</version>
158 <scope>provided</scope>
159 </dependency>
160
Michael Lando451a3402017-02-19 10:28:42 +0200161 <dependency>
andre.schmidbf5eeb22019-09-27 13:27:11 +0100162 <groupId>org.hamcrest</groupId>
163 <artifactId>hamcrest</artifactId>
164 <version>${hamcrest.version}</version>
165 <scope>test</scope>
166 </dependency>
167
168 <dependency>
169 <groupId>org.hamcrest</groupId>
170 <artifactId>hamcrest-library</artifactId>
171 <version>${hamcrest.version}</version>
172 <scope>test</scope>
173 </dependency>
174
175 <dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200176 <groupId>junit</groupId>
177 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300178 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200179 <scope>test</scope>
180 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300181
Michael Lando451a3402017-02-19 10:28:42 +0200182 <dependency>
183 <groupId>org.mockito</groupId>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200184 <artifactId>mockito-core</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +0200185 <scope>test</scope>
186 </dependency>
187
Tal Gitelman503be6d2018-09-05 17:47:16 +0300188 <dependency>
189 <groupId>com.google.code.bean-matchers</groupId>
190 <artifactId>bean-matchers</artifactId>
191 <version>${bean-matchers.version}</version>
192 <scope>test</scope>
193 </dependency>
194
Michael Lando451a3402017-02-19 10:28:42 +0200195 <!-- jsoup HTML parser library @ http://jsoup.org/ -->
196 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300197 <groupId>org.jsoup</groupId>
198 <artifactId>jsoup</artifactId>
199 <version>1.8.3</version>
Michael Lando451a3402017-02-19 10:28:42 +0200200 </dependency>
201
202 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300203 <groupId>commons-validator</groupId>
Michael Lando451a3402017-02-19 10:28:42 +0200204 <artifactId>commons-validator</artifactId>
Gitelman, Tal (tg851x)bfe4bd12018-03-13 00:27:13 +0200205 <version>1.6</version>
Tal Gitelman76783962018-09-06 18:16:24 +0300206 <exclusions>
207 <exclusion>
208 <artifactId>commons-collections</artifactId>
209 <groupId>commons-collections</groupId>
210 </exclusion>
211 </exclusions>
Michael Lando451a3402017-02-19 10:28:42 +0200212 </dependency>
213
Tal Gitelman76783962018-09-06 18:16:24 +0300214 <dependency>
215 <artifactId>commons-collections</artifactId>
216 <groupId>commons-collections</groupId>
217 <version>3.2.2</version>
218 </dependency>
219
Michael Lando451a3402017-02-19 10:28:42 +0200220 <dependency>
221 <groupId>org.codehaus.jettison</groupId>
222 <artifactId>jettison</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300223 <version>1.3.3</version>
Michael Lando451a3402017-02-19 10:28:42 +0200224 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300225
Michael Lando451a3402017-02-19 10:28:42 +0200226 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300227 <groupId>de.ruedigermoeller</groupId>
228 <artifactId>fst</artifactId>
229 <version>2.47</version>
230 <scope>compile</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200231 </dependency>
232 </dependencies>
233
Michael Landoed64b5e2017-06-09 03:19:04 +0300234 <build>
235 <plugins>
236 <plugin>
237 <groupId>org.apache.maven.plugins</groupId>
238 <artifactId>maven-deploy-plugin</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300239 <configuration>
240 <skip>true</skip>
241 </configuration>
242 </plugin>
dekstroza37843cb2018-05-18 14:42:24 +0100243 <plugin>
244 <groupId>com.github.sylvainlaurent.maven</groupId>
245 <artifactId>yaml-json-validator-maven-plugin</artifactId>
246 <executions>
247 <execution>
248 <id>validate</id>
249 <phase>validate</phase>
250 <goals>
251 <goal>validate</goal>
252 </goals>
253 <configuration>
254 <validationSets>
255 <validationSet>
256 <includes>
257 <include>src/main/resources/**/*.y*ml</include>
258 <include>src/test/resources/**/*.y*ml</include>
259 </includes>
260 </validationSet>
261 <validationSet>
262 <includes>
263 <include>src/main/resources/**/*.json</include>
264 <include>src/test/resources/**/*.json</include>
265 </includes>
266 </validationSet>
267 </validationSets>
268 </configuration>
269 </execution>
270 </executions>
271 </plugin>
Michael Landoed64b5e2017-06-09 03:19:04 +0300272 </plugins>
273 </build>
Michael Lando5b593492018-07-29 16:13:45 +0300274</project>