blob: 1697ada724348a257977e9430903f4e9d7641c06 [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 Landod8a0dea2018-06-02 19:23:27 +030011 <version>1.3.0-SNAPSHOT</version>
Michael Lando451a3402017-02-19 10:28:42 +020012 </parent>
Gitelman, Tal (tg851x)e482ae42018-03-11 19:37:06 +020013
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>
31 <artifactId>servlet-api</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +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 Landoed64b5e2017-06-09 03:19:04 +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 Landoed64b5e2017-06-09 03:19:04 +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 Landoed64b5e2017-06-09 03:19:04 +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 Landoed64b5e2017-06-09 03:19:04 +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 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 Landoed64b5e2017-06-09 03:19:04 +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 Lando451a3402017-02-19 10:28:42 +0200145
146 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300147 <groupId>com.google.guava</groupId>
148 <artifactId>guava</artifactId>
149 <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ -->
150 <scope>provided</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200151 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300152 <!-- System metrics -->
153 <dependency>
154 <groupId>org.fusesource</groupId>
155 <artifactId>sigar</artifactId>
156 <version>${sigar.version}</version>
157 <scope>provided</scope>
158 </dependency>
159
Michael Lando451a3402017-02-19 10:28:42 +0200160 <dependency>
161 <groupId>junit</groupId>
162 <artifactId>junit</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300163 <version>${junit.version}</version>
Michael Lando451a3402017-02-19 10:28:42 +0200164 <scope>test</scope>
165 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300166
Michael Lando451a3402017-02-19 10:28:42 +0200167 <dependency>
168 <groupId>org.mockito</groupId>
Tal Gitelman51d50f02017-12-10 18:55:03 +0200169 <artifactId>mockito-core</artifactId>
Michael Lando451a3402017-02-19 10:28:42 +0200170 <scope>test</scope>
171 </dependency>
172
173 <!-- jsoup HTML parser library @ http://jsoup.org/ -->
174 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300175 <groupId>org.jsoup</groupId>
176 <artifactId>jsoup</artifactId>
177 <version>1.8.3</version>
Michael Lando451a3402017-02-19 10:28:42 +0200178 </dependency>
179
180 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300181 <groupId>commons-validator</groupId>
Michael Lando451a3402017-02-19 10:28:42 +0200182 <artifactId>commons-validator</artifactId>
Gitelman, Tal (tg851x)bfe4bd12018-03-13 00:27:13 +0200183 <version>1.6</version>
Michael Lando451a3402017-02-19 10:28:42 +0200184 </dependency>
185
186 <dependency>
187 <groupId>org.codehaus.jettison</groupId>
188 <artifactId>jettison</artifactId>
Michael Landoed64b5e2017-06-09 03:19:04 +0300189 <version>1.3.3</version>
Michael Lando451a3402017-02-19 10:28:42 +0200190 </dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300191
Michael Lando451a3402017-02-19 10:28:42 +0200192 <dependency>
Michael Landoed64b5e2017-06-09 03:19:04 +0300193 <groupId>de.ruedigermoeller</groupId>
194 <artifactId>fst</artifactId>
195 <version>2.47</version>
196 <scope>compile</scope>
Michael Lando451a3402017-02-19 10:28:42 +0200197 </dependency>
198 </dependencies>
199
Michael Landoed64b5e2017-06-09 03:19:04 +0300200 <build>
201 <plugins>
202 <plugin>
203 <groupId>org.apache.maven.plugins</groupId>
204 <artifactId>maven-deploy-plugin</artifactId>
205 <version>2.7</version>
206 <configuration>
207 <skip>true</skip>
208 </configuration>
209 </plugin>
210 </plugins>
211 </build>
Michael Lando451a3402017-02-19 10:28:42 +0200212</project>