blob: 30577653ff43d7e94f746310c1e36fb81d436f87 [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 Lando0ad3c802017-09-19 16:32:59 +030011 <version>1.2.0-SNAPSHOT</version>
Michael Lando451a3402017-02-19 10:28:42 +020012 </parent>
Michael Landoed64b5e2017-06-09 03:19:04 +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>
30 <groupId>org.slf4j</groupId>
31 <artifactId>slf4j-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030032 <version>${slf4j-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>javax.servlet</groupId>
38 <artifactId>servlet-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030039 <version>${servlet-api.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 <dependency>
44 <groupId>org.glassfish.jersey.containers</groupId>
45 <artifactId>jersey-container-servlet</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030046 <version>${jersey-bom.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020047 <scope>provided</scope>
48 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030049
Michael Lando451a3402017-02-19 10:28:42 +020050 <!-- yaml to object converter -->
51 <dependency>
52 <groupId>org.yaml</groupId>
53 <artifactId>snakeyaml</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030054 <version>${snakeyaml.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020055 <scope>provided</scope>
56 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030057
58 <!-- listen to file changes -->
Michael Lando451a3402017-02-19 10:28:42 +020059 <dependency>
60 <groupId>org.apache.commons</groupId>
61 <artifactId>commons-jci-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030062 <version>${commons-jci-core.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020063 <scope>provided</scope>
64 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030065
Michael Lando451a3402017-02-19 10:28:42 +020066 <!-- Gson -->
67 <dependency>
68 <groupId>com.google.code.gson</groupId>
69 <artifactId>gson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030070 <version>${gson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +020071 <scope>provided</scope>
72 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +030073
74 <!-- http client -->
Michael Lando451a3402017-02-19 10:28:42 +020075 <dependency>
76 <groupId>org.apache.httpcomponents</groupId>
77 <artifactId>httpclient</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030078 <version>${httpclient.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>org.apache.httpcomponents</groupId>
84 <artifactId>httpcore</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030085 <version>${httpcore.version}</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-logging</groupId>
91 <artifactId>commons-logging</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030092 <version>${commons-logging}</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>commons-codec</groupId>
98 <artifactId>commons-codec</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +030099 <version>${commons-codec}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200100 <scope>provided</scope>
101 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300102
Michael Lando451a3402017-02-19 10:28:42 +0200103 <dependency>
104 <groupId>org.glassfish.jersey.media</groupId>
105 <artifactId>jersey-media-json-jackson</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300106 <version>${jersey-bom.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200107 <scope>provided</scope>
108 </dependency>
109
110 <!-- Aspects -->
111 <dependency>
112 <groupId>com.jcabi</groupId>
113 <artifactId>jcabi-aspects</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300114 <version>${jcabi.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200115 <scope>provided</scope>
116 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +0200117 <dependency>
118 <groupId>org.aspectj</groupId>
119 <artifactId>aspectjrt</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200120 <version>${aspectjrt.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200121 <scope>provided</scope>
122 </dependency>
123
124 <dependency>
125 <groupId>org.apache.commons</groupId>
126 <artifactId>commons-lang3</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300127 <version>${lang3.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200128 <scope>provided</scope>
129 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300130
Michael Lando451a3402017-02-19 10:28:42 +0200131 <dependency>
132 <groupId>com.fasterxml.jackson.core</groupId>
133 <artifactId>jackson-databind</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
138 <dependency>
139 <groupId>com.fasterxml.jackson.core</groupId>
140 <artifactId>jackson-core</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200141 <version>${jackson.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200142 <scope>provided</scope>
143 </dependency>
144 <!-- logging -->
145 <dependency>
146 <groupId>ch.qos.logback</groupId>
147 <artifactId>logback-classic</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +0200148 <version>${logback.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200149 <scope>provided</scope>
150 </dependency>
151
152 <dependency>
153 <groupId>ch.qos.logback</groupId>
154 <artifactId>logback-core</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300155 <version>${logback.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200156 <scope>provided</scope>
157 </dependency>
158 <!-- logging end -->
Michael Lando451a3402017-02-19 10:28:42 +0200159
160 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300161 <groupId>com.google.guava</groupId>
162 <artifactId>guava</artifactId>
163 <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ -->
164 <scope>provided</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200165 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300166 <!-- System metrics -->
167 <dependency>
168 <groupId>org.fusesource</groupId>
169 <artifactId>sigar</artifactId>
170 <version>${sigar.version}</version>
171 <scope>provided</scope>
172 </dependency>
173
Michael Lando451a3402017-02-19 10:28:42 +0200174 <dependency>
175 <groupId>junit</groupId>
176 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300177 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200178 <scope>test</scope>
179 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300180
Michael Lando451a3402017-02-19 10:28:42 +0200181 <dependency>
182 <groupId>org.mockito</groupId>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200183 <artifactId>mockito-core</artifactId>
Michael Landoce868e62017-12-25 20:07:37 +0200184 <version>${mockito.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200185 <scope>test</scope>
186 </dependency>
187
188 <!-- jsoup HTML parser library @ http://jsoup.org/ -->
189 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300190 <groupId>org.jsoup</groupId>
191 <artifactId>jsoup</artifactId>
192 <version>1.8.3</version>
Michael Lando451a3402017-02-19 10:28:42 +0200193 </dependency>
194
195 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300196 <groupId>commons-validator</groupId>
Michael Lando451a3402017-02-19 10:28:42 +0200197 <artifactId>commons-validator</artifactId>
198 <version>1.5.1</version>
199 </dependency>
200
201 <dependency>
202 <groupId>org.codehaus.jettison</groupId>
203 <artifactId>jettison</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300204 <version>1.3.3</version>
Michael Lando451a3402017-02-19 10:28:42 +0200205 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300206
Michael Lando451a3402017-02-19 10:28:42 +0200207 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300208 <groupId>de.ruedigermoeller</groupId>
209 <artifactId>fst</artifactId>
210 <version>2.47</version>
211 <scope>compile</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200212 </dependency>
213 </dependencies>
214
Michael Landoed64b5e2017-06-09 03:19:04 +0300215 <build>
216 <plugins>
217 <plugin>
218 <groupId>org.apache.maven.plugins</groupId>
219 <artifactId>maven-deploy-plugin</artifactId>
220 <version>2.7</version>
221 <configuration>
222 <skip>true</skip>
223 </configuration>
224 </plugin>
225 </plugins>
226 </build>
Michael Lando451a3402017-02-19 10:28:42 +0200227</project>