blob: 6a141c2b2935f65ed4fa49e93b1973db4f5ed551 [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"
2 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>
Michael Lando65dd8632017-12-06 21:23:22 +020011 <version>1.1.1-SNAPSHOT</version>
Michael Lando451a3402017-02-19 10:28:42 +020012 </parent>
Michael Landoed64b5e2017-06-09 03:19:04 +030013
Michael Lando451a3402017-02-19 10:28:42 +020014 <dependencies>
Michael Landoc0ac0152017-02-27 23:48:43 +020015
16 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030017 <groupId>org.openecomp.sdc</groupId>
18 <artifactId>security-utils</artifactId>
19 <version>${project.version}</version>
Michael Landoc0ac0152017-02-27 23:48:43 +020020 <scope>provided</scope>
21 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020022 <!-- functional java -->
Michael Landoed64b5e2017-06-09 03:19:04 +030023 <dependency>
24 <groupId>org.functionaljava</groupId>
25 <artifactId>functionaljava</artifactId>
26 <version>${functionaljava.version}</version>
27 <scope>provided</scope>
28 </dependency>
29
Michael Lando451a3402017-02-19 10:28:42 +020030 <dependency>
31 <groupId>org.slf4j</groupId>
32 <artifactId>slf4j-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030033 <version>${slf4j-api.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020034 <scope>provided</scope>
35 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030036
Michael Lando451a3402017-02-19 10:28:42 +020037 <dependency>
38 <groupId>javax.servlet</groupId>
39 <artifactId>servlet-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030040 <version>${servlet-api.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020041 <scope>provided</scope>
42 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030043
Michael Lando451a3402017-02-19 10:28:42 +020044 <dependency>
45 <groupId>org.glassfish.jersey.containers</groupId>
46 <artifactId>jersey-container-servlet</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030047 <version>${jersey-bom.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020048 <scope>provided</scope>
49 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030050
Michael Lando451a3402017-02-19 10:28:42 +020051 <!-- yaml to object converter -->
52 <dependency>
53 <groupId>org.yaml</groupId>
54 <artifactId>snakeyaml</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030055 <version>${snakeyaml.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020056 <scope>provided</scope>
57 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030058
59 <!-- listen to file changes -->
Michael Lando451a3402017-02-19 10:28:42 +020060 <dependency>
61 <groupId>org.apache.commons</groupId>
62 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030063 <version>${commons-jci-core.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020064 <scope>provided</scope>
65 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030066
Michael Lando451a3402017-02-19 10:28:42 +020067 <!-- Gson -->
68 <dependency>
69 <groupId>com.google.code.gson</groupId>
70 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030071 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020072 <scope>provided</scope>
73 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030074
75 <!-- http client -->
Michael Lando451a3402017-02-19 10:28:42 +020076 <dependency>
77 <groupId>org.apache.httpcomponents</groupId>
78 <artifactId>httpclient</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030079 <version>${httpclient.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020080 <scope>provided</scope>
81 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030082
Michael Lando451a3402017-02-19 10:28:42 +020083 <dependency>
84 <groupId>org.apache.httpcomponents</groupId>
85 <artifactId>httpcore</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030086 <version>${httpcore.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020087 <scope>provided</scope>
88 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030089
Michael Lando451a3402017-02-19 10:28:42 +020090 <dependency>
91 <groupId>commons-logging</groupId>
92 <artifactId>commons-logging</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030093 <version>${commons-logging}</version>
Michael Lando451a3402017-02-19 10:28:42 +020094 <scope>provided</scope>
95 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030096
Michael Lando451a3402017-02-19 10:28:42 +020097 <dependency>
98 <groupId>commons-codec</groupId>
99 <artifactId>commons-codec</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300100 <version>${commons-codec}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200101 <scope>provided</scope>
102 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300103
Michael Lando451a3402017-02-19 10:28:42 +0200104 <dependency>
105 <groupId>org.glassfish.jersey.media</groupId>
106 <artifactId>jersey-media-json-jackson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300107 <version>${jersey-bom.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200108 <scope>provided</scope>
109 </dependency>
110
111 <!-- Aspects -->
112 <dependency>
113 <groupId>com.jcabi</groupId>
114 <artifactId>jcabi-aspects</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300115 <version>${jcabi.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200116 <scope>provided</scope>
117 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200118 <dependency>
119 <groupId>org.aspectj</groupId>
120 <artifactId>aspectjrt</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200121 <version>${aspectjrt.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200122 <scope>provided</scope>
123 </dependency>
124
125 <dependency>
126 <groupId>org.apache.commons</groupId>
127 <artifactId>commons-lang3</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300128 <version>${lang3.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200129 <scope>provided</scope>
130 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300131
Michael Lando451a3402017-02-19 10:28:42 +0200132 <dependency>
133 <groupId>com.fasterxml.jackson.core</groupId>
134 <artifactId>jackson-databind</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
139 <dependency>
140 <groupId>com.fasterxml.jackson.core</groupId>
141 <artifactId>jackson-core</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200142 <version>${jackson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200143 <scope>provided</scope>
144 </dependency>
145 <!-- logging -->
146 <dependency>
147 <groupId>ch.qos.logback</groupId>
148 <artifactId>logback-classic</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200149 <version>${logback.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200150 <scope>provided</scope>
151 </dependency>
152
153 <dependency>
154 <groupId>ch.qos.logback</groupId>
155 <artifactId>logback-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300156 <version>${logback.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200157 <scope>provided</scope>
158 </dependency>
159 <!-- logging end -->
Michael Lando451a3402017-02-19 10:28:42 +0200160
161 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300162 <groupId>com.google.guava</groupId>
163 <artifactId>guava</artifactId>
164 <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ -->
165 <scope>provided</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200166 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300167 <!-- System metrics -->
168 <dependency>
169 <groupId>org.fusesource</groupId>
170 <artifactId>sigar</artifactId>
171 <version>${sigar.version}</version>
172 <scope>provided</scope>
173 </dependency>
174
Michael Lando451a3402017-02-19 10:28:42 +0200175 <dependency>
176 <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>
184 <artifactId>mockito-all</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300185 <version>${mockito.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200186 <scope>test</scope>
187 </dependency>
188
189 <!-- jsoup HTML parser library @ http://jsoup.org/ -->
190 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300191 <groupId>org.jsoup</groupId>
192 <artifactId>jsoup</artifactId>
193 <version>1.8.3</version>
Michael Lando451a3402017-02-19 10:28:42 +0200194 </dependency>
195
196 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300197 <groupId>commons-validator</groupId>
Michael Lando451a3402017-02-19 10:28:42 +0200198 <artifactId>commons-validator</artifactId>
199 <version>1.5.1</version>
200 </dependency>
201
202 <dependency>
203 <groupId>org.codehaus.jettison</groupId>
204 <artifactId>jettison</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300205 <version>1.3.3</version>
Michael Lando451a3402017-02-19 10:28:42 +0200206 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300207
Michael Lando451a3402017-02-19 10:28:42 +0200208 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300209 <groupId>de.ruedigermoeller</groupId>
210 <artifactId>fst</artifactId>
211 <version>2.47</version>
212 <scope>compile</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200213 </dependency>
214 </dependencies>
215
Michael Landoed64b5e2017-06-09 03:19:04 +0300216 <build>
217 <plugins>
218 <plugin>
219 <groupId>org.apache.maven.plugins</groupId>
220 <artifactId>maven-deploy-plugin</artifactId>
221 <version>2.7</version>
222 <configuration>
223 <skip>true</skip>
224 </configuration>
225 </plugin>
226 </plugins>
227 </build>
Michael Lando451a3402017-02-19 10:28:42 +0200228</project>