Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 1 | <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"> |
| 3 | |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | |
| 6 | <artifactId>common-app-api</artifactId> |
| 7 | |
| 8 | <parent> |
| 9 | <groupId>org.openecomp.sdc</groupId> |
| 10 | <artifactId>sdc-main</artifactId> |
Michael Lando | ebd7c8f | 2017-03-15 20:38:00 +0200 | [diff] [blame^] | 11 | <version>1.1.0-SNAPSHOT</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 12 | </parent> |
| 13 | |
| 14 | |
| 15 | <dependencies> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 16 | |
| 17 | <dependency> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 18 | <groupId>org.testng</groupId> |
| 19 | <artifactId>testng</artifactId> |
| 20 | <version>6.9.10</version> |
| 21 | <scope>test</scope> |
| 22 | </dependency> |
| 23 | |
| 24 | <dependency> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 25 | <groupId>org.springframework</groupId> |
| 26 | <artifactId>spring-core</artifactId> |
| 27 | <version>${spring.version}</version> |
| 28 | <scope>provided</scope> |
| 29 | </dependency> |
| 30 | |
| 31 | <dependency> |
| 32 | <groupId>org.springframework</groupId> |
| 33 | <artifactId>spring-beans</artifactId> |
| 34 | <version>${spring.version}</version> |
| 35 | <scope>provided</scope> |
| 36 | </dependency> |
| 37 | |
| 38 | <dependency> |
| 39 | <groupId>org.springframework</groupId> |
| 40 | <artifactId>spring-context</artifactId> |
| 41 | <version>${spring.version}</version> |
| 42 | <scope>provided</scope> |
| 43 | </dependency> |
| 44 | |
| 45 | <dependency> |
| 46 | <groupId>org.springframework</groupId> |
| 47 | <artifactId>spring-context-support</artifactId> |
| 48 | <version>${spring.version}</version> |
| 49 | <scope>provided</scope> |
| 50 | </dependency> |
| 51 | |
| 52 | <dependency> |
| 53 | <groupId>org.springframework</groupId> |
| 54 | <artifactId>spring-messaging</artifactId> |
| 55 | <version>${spring.version}</version> |
| 56 | <scope>provided</scope> |
| 57 | </dependency> |
| 58 | |
| 59 | <dependency> |
| 60 | <groupId>org.springframework</groupId> |
| 61 | <artifactId>spring-web</artifactId> |
| 62 | <version>${spring.version}</version> |
| 63 | <scope>provided</scope> |
| 64 | </dependency> |
| 65 | |
| 66 | <dependency> |
| 67 | <groupId>org.springframework</groupId> |
| 68 | <artifactId>spring-webmvc</artifactId> |
| 69 | <version>${spring.version}</version> |
| 70 | <scope>provided</scope> |
| 71 | </dependency> |
| 72 | |
| 73 | <dependency> |
| 74 | <groupId>org.springframework</groupId> |
| 75 | <artifactId>spring-aop</artifactId> |
| 76 | <version>${spring.version}</version> |
| 77 | <scope>provided</scope> |
| 78 | </dependency> |
| 79 | |
| 80 | <dependency> |
| 81 | <groupId>org.springframework</groupId> |
| 82 | <artifactId>spring-aspects</artifactId> |
| 83 | <version>${spring.version}</version> |
| 84 | <scope>provided</scope> |
| 85 | </dependency> |
| 86 | |
| 87 | <dependency> |
| 88 | <groupId>org.springframework</groupId> |
| 89 | <artifactId>spring-test</artifactId> |
| 90 | <version>${spring.version}</version> |
| 91 | <scope>test</scope> |
| 92 | </dependency> |
| 93 | |
| 94 | <dependency> |
| 95 | <groupId>org.springframework</groupId> |
| 96 | <artifactId>spring-expression</artifactId> |
| 97 | <version>${spring.version}</version> |
| 98 | <scope>test</scope> |
| 99 | </dependency> |
| 100 | |
| 101 | |
| 102 | <dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 103 | <groupId>org.openecomp.sdc</groupId> |
| 104 | <artifactId>security-utils</artifactId> |
| 105 | <version>${security-utils.version}</version> |
| 106 | <scope>provided</scope> |
| 107 | </dependency> |
| 108 | <!-- functional java --> |
| 109 | |
| 110 | <dependency> |
| 111 | <groupId>org.functionaljava</groupId> |
| 112 | <artifactId>functionaljava</artifactId> |
| 113 | <scope>compile</scope> |
| 114 | </dependency> |
| 115 | |
| 116 | <dependency> |
| 117 | <groupId>org.slf4j</groupId> |
| 118 | <artifactId>slf4j-api</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 119 | <version>1.7.10</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 120 | <scope>provided</scope> |
| 121 | </dependency> |
| 122 | |
| 123 | <dependency> |
| 124 | <groupId>javax.servlet</groupId> |
| 125 | <artifactId>servlet-api</artifactId> |
| 126 | <scope>provided</scope> |
| 127 | </dependency> |
| 128 | |
| 129 | <dependency> |
| 130 | <groupId>org.glassfish.jersey.containers</groupId> |
| 131 | <artifactId>jersey-container-servlet</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 132 | <version>2.24</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 133 | <scope>provided</scope> |
| 134 | </dependency> |
| 135 | |
| 136 | <!-- yaml to object converter --> |
| 137 | <dependency> |
| 138 | <groupId>org.yaml</groupId> |
| 139 | <artifactId>snakeyaml</artifactId> |
Michael Lando | 0de99c2 | 2017-02-28 10:54:57 +0200 | [diff] [blame] | 140 | <version>1.14</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 141 | <scope>provided</scope> |
| 142 | </dependency> |
| 143 | |
| 144 | <!-- listen to file changes --> |
| 145 | <dependency> |
| 146 | <groupId>org.apache.commons</groupId> |
| 147 | <artifactId>commons-jci-core</artifactId> |
| 148 | <scope>provided</scope> |
| 149 | </dependency> |
| 150 | |
| 151 | <!-- Gson --> |
| 152 | <dependency> |
| 153 | <groupId>com.google.code.gson</groupId> |
| 154 | <artifactId>gson</artifactId> |
Michael Lando | 9744a93 | 2017-02-28 08:22:59 +0200 | [diff] [blame] | 155 | <version>2.3.1</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 156 | <scope>provided</scope> |
| 157 | </dependency> |
| 158 | |
| 159 | <!-- http client --> |
| 160 | <dependency> |
| 161 | <groupId>org.apache.httpcomponents</groupId> |
| 162 | <artifactId>httpclient</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 163 | <version>${httpclient.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 164 | <scope>provided</scope> |
| 165 | </dependency> |
| 166 | |
| 167 | <dependency> |
| 168 | <groupId>org.apache.httpcomponents</groupId> |
| 169 | <artifactId>httpcore</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 170 | <version>${httpcore.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 171 | <scope>provided</scope> |
| 172 | </dependency> |
| 173 | |
| 174 | <dependency> |
| 175 | <groupId>commons-logging</groupId> |
| 176 | <artifactId>commons-logging</artifactId> |
Michael Lando | 2e0ef97 | 2017-02-28 01:44:21 +0200 | [diff] [blame] | 177 | <version>1.2.1-SNAPSHOT</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 178 | <scope>provided</scope> |
| 179 | </dependency> |
| 180 | |
| 181 | <dependency> |
| 182 | <groupId>commons-codec</groupId> |
| 183 | <artifactId>commons-codec</artifactId> |
Michael Lando | 2e0ef97 | 2017-02-28 01:44:21 +0200 | [diff] [blame] | 184 | <version>2.0-SNAPSHOT</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 185 | <scope>provided</scope> |
| 186 | </dependency> |
| 187 | |
| 188 | <dependency> |
| 189 | <groupId>org.glassfish.jersey.media</groupId> |
| 190 | <artifactId>jersey-media-json-jackson</artifactId> |
| 191 | <scope>provided</scope> |
| 192 | </dependency> |
| 193 | |
| 194 | <!-- Aspects --> |
| 195 | <dependency> |
| 196 | <groupId>com.jcabi</groupId> |
| 197 | <artifactId>jcabi-aspects</artifactId> |
| 198 | <scope>provided</scope> |
| 199 | </dependency> |
| 200 | |
| 201 | <dependency> |
| 202 | <groupId>org.aspectj</groupId> |
| 203 | <artifactId>aspectjrt</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 204 | <version>${aspectjrt.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 205 | <scope>provided</scope> |
| 206 | </dependency> |
| 207 | |
| 208 | <dependency> |
| 209 | <groupId>org.apache.commons</groupId> |
| 210 | <artifactId>commons-lang3</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 211 | <version>${lang3.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 212 | <scope>provided</scope> |
| 213 | </dependency> |
| 214 | |
| 215 | <dependency> |
| 216 | <groupId>com.fasterxml.jackson.core</groupId> |
| 217 | <artifactId>jackson-databind</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 218 | <version>${jackson.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 219 | <scope>provided</scope> |
| 220 | </dependency> |
| 221 | |
| 222 | <dependency> |
| 223 | <groupId>com.fasterxml.jackson.core</groupId> |
| 224 | <artifactId>jackson-core</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 225 | <version>${jackson.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 226 | <scope>provided</scope> |
| 227 | </dependency> |
| 228 | <!-- logging --> |
| 229 | <dependency> |
| 230 | <groupId>ch.qos.logback</groupId> |
| 231 | <artifactId>logback-classic</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 232 | <version>${logback.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 233 | <scope>provided</scope> |
| 234 | </dependency> |
| 235 | |
| 236 | <dependency> |
| 237 | <groupId>ch.qos.logback</groupId> |
| 238 | <artifactId>logback-core</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 239 | <version>${logback.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 240 | <scope>provided</scope> |
| 241 | </dependency> |
| 242 | <!-- logging end --> |
| 243 | <!-- --> |
| 244 | <dependency> |
| 245 | <groupId>com.google.guava</groupId> |
| 246 | <artifactId>guava</artifactId> |
| 247 | <version>${guava.version}</version><!--$NO-MVN-MAN-VER$--> |
| 248 | <scope>provided</scope> |
| 249 | </dependency> |
| 250 | |
| 251 | <dependency> |
| 252 | <groupId>org.fusesource</groupId> |
| 253 | <artifactId>sigar</artifactId> |
| 254 | <scope>compile</scope> |
| 255 | </dependency> |
| 256 | |
| 257 | <dependency> |
| 258 | <groupId>junit</groupId> |
| 259 | <artifactId>junit</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 260 | <version>4.12</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 261 | <scope>test</scope> |
| 262 | </dependency> |
| 263 | |
| 264 | <dependency> |
| 265 | <groupId>org.mockito</groupId> |
| 266 | <artifactId>mockito-all</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 267 | <version>1.10.19</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 268 | <scope>test</scope> |
| 269 | </dependency> |
| 270 | |
| 271 | <!-- jsoup HTML parser library @ http://jsoup.org/ --> |
| 272 | <dependency> |
| 273 | <groupId>org.jsoup</groupId> |
| 274 | <artifactId>jsoup</artifactId> |
| 275 | <version>1.8.3</version> |
| 276 | </dependency> |
| 277 | |
| 278 | <dependency> |
| 279 | <groupId>commons-validator</groupId> |
| 280 | <artifactId>commons-validator</artifactId> |
| 281 | <version>1.5.1</version> |
| 282 | </dependency> |
| 283 | |
| 284 | <dependency> |
| 285 | <groupId>org.codehaus.jettison</groupId> |
| 286 | <artifactId>jettison</artifactId> |
| 287 | <version>1.3.8</version> |
| 288 | </dependency> |
| 289 | |
| 290 | <dependency> |
| 291 | <groupId>de.ruedigermoeller</groupId> |
| 292 | <artifactId>fst</artifactId> |
| 293 | <version>2.47</version> |
| 294 | <scope>compile</scope> |
| 295 | </dependency> |
| 296 | </dependencies> |
| 297 | |
| 298 | <build> |
| 299 | <plugins> |
| 300 | <plugin> |
| 301 | <groupId>org.apache.maven.plugins</groupId> |
| 302 | <artifactId>maven-deploy-plugin</artifactId> |
| 303 | <version>2.7</version> |
| 304 | <configuration> |
| 305 | <skip>true</skip> |
| 306 | </configuration> |
| 307 | </plugin> |
| 308 | </plugins> |
| 309 | </build> |
| 310 | |
| 311 | </project> |