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"> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <artifactId>catalog-be</artifactId> |
| 6 | <packaging>war</packaging> |
| 7 | |
| 8 | <parent> |
| 9 | <groupId>org.openecomp.sdc</groupId> |
| 10 | <artifactId>sdc-main</artifactId> |
Michael Lando | 0ad3c80 | 2017-09-19 16:32:59 +0300 | [diff] [blame] | 11 | <version>1.2.0-SNAPSHOT</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 12 | </parent> |
| 13 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 14 | <properties> |
| 15 | <swagger-ui-version>2.1.0-M2</swagger-ui-version> |
| 16 | </properties> |
| 17 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 18 | <dependencies> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 19 | <!--JSON and YAML Parsing--> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 20 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 21 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 22 | <artifactId>jackson-dataformat-yaml</artifactId> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 23 | <version>${jackson.yaml.version}</version> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 24 | <scope>compile</scope> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 25 | </dependency> |
| 26 | |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 27 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 28 | <groupId>com.fasterxml.jackson.core</groupId> |
| 29 | <artifactId>jackson-databind</artifactId> |
| 30 | <version>${jackson.version}</version> |
| 31 | <scope>compile</scope> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 32 | </dependency> |
| 33 | |
| 34 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 35 | <groupId>com.fasterxml.jackson.core</groupId> |
| 36 | <artifactId>jackson-core</artifactId> |
| 37 | <version>${jackson.version}</version> |
| 38 | <scope>compile</scope> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 39 | </dependency> |
| 40 | |
| 41 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 42 | <groupId>com.fasterxml.jackson.core</groupId> |
| 43 | <artifactId>jackson-annotations</artifactId> |
| 44 | <version>${jackson.annotations.version}</version> |
| 45 | <scope>compile</scope> |
| 46 | </dependency> |
| 47 | |
| 48 | <dependency> |
| 49 | <groupId>org.glassfish.jersey.media</groupId> |
| 50 | <artifactId>jersey-media-multipart</artifactId> |
| 51 | <version>${jersey-bom.version}</version> |
| 52 | <scope>compile</scope> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 53 | </dependency> |
| 54 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 55 | <dependency> |
| 56 | <groupId>org.openecomp.sdc</groupId> |
| 57 | <artifactId>security-utils</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 58 | <version>${project.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 59 | <scope>compile</scope> |
| 60 | </dependency> |
| 61 | |
| 62 | <dependency> |
| 63 | <groupId>com.tinkerpop.blueprints</groupId> |
| 64 | <artifactId>blueprints-sail-graph</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 65 | <version>2.5.0</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 66 | <optional>true</optional> |
| 67 | <exclusions> |
| 68 | <exclusion> |
| 69 | <groupId>org.slf4j</groupId> |
| 70 | <artifactId>slf4j-log4j12</artifactId> |
| 71 | </exclusion> |
| 72 | </exclusions> |
| 73 | </dependency> |
| 74 | |
| 75 | <dependency> |
| 76 | <groupId>com.tinkerpop.blueprints</groupId> |
| 77 | <artifactId>blueprints-graph-sail</artifactId> |
| 78 | <version>2.5.0</version> |
| 79 | <optional>true</optional> |
| 80 | </dependency> |
| 81 | |
| 82 | <!-- Swagger Dependencies Start --> |
| 83 | <dependency> |
Tal Gitelman | aa8e3a0 | 2017-06-21 14:29:02 +0300 | [diff] [blame] | 84 | <groupId>io.swagger</groupId> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 85 | <artifactId>swagger-jersey2-jaxrs</artifactId> |
| 86 | <scope>compile</scope> |
Tal Gitelman | aa8e3a0 | 2017-06-21 14:29:02 +0300 | [diff] [blame] | 87 | <version>1.5.15</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 88 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 89 | <!-- Swagger Dependencies End --> |
Tal Gitelman | ed7e1c3 | 2017-06-29 19:30:00 +0300 | [diff] [blame] | 90 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 91 | <dependency> |
| 92 | <groupId>org.openecomp.sdc</groupId> |
| 93 | <artifactId>common-app-api</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 94 | <version>${project.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 95 | <scope>compile</scope> |
| 96 | </dependency> |
| 97 | |
| 98 | <dependency> |
| 99 | <groupId>org.openecomp.sdc.be</groupId> |
| 100 | <artifactId>common-be</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 101 | <version>${project.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 102 | <scope>compile</scope> |
| 103 | </dependency> |
| 104 | <dependency> |
| 105 | <groupId>org.openecomp.sdc.be</groupId> |
| 106 | <artifactId>catalog-dao</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 107 | <version>${project.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 108 | <scope>compile</scope> |
| 109 | </dependency> |
| 110 | |
| 111 | <dependency> |
| 112 | <groupId>org.openecomp.sdc.be</groupId> |
| 113 | <artifactId>catalog-model</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 114 | <version>${project.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 115 | <scope>compile</scope> |
| 116 | </dependency> |
| 117 | |
| 118 | <!-- slf4j + logback --> |
| 119 | <dependency> |
| 120 | <groupId>org.slf4j</groupId> |
| 121 | <artifactId>slf4j-api</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 122 | <version>${slf4j-api.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 123 | <scope>compile</scope> |
| 124 | </dependency> |
| 125 | |
| 126 | <dependency> |
| 127 | <groupId>ch.qos.logback</groupId> |
| 128 | <artifactId>logback-classic</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 129 | <version>${logback.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 130 | <scope>compile</scope> |
| 131 | </dependency> |
| 132 | |
| 133 | <dependency> |
| 134 | <groupId>ch.qos.logback</groupId> |
| 135 | <artifactId>logback-core</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 136 | <version>${logback.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 137 | <scope>compile</scope> |
| 138 | </dependency> |
| 139 | |
| 140 | <!-- Snake Yaml --> |
| 141 | <dependency> |
| 142 | <groupId>org.yaml</groupId> |
| 143 | <artifactId>snakeyaml</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 144 | <version>${snakeyaml.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 145 | <scope>compile</scope> |
| 146 | </dependency> |
| 147 | |
| 148 | <!-- File changes listener --> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 149 | <dependency> |
| 150 | <groupId>org.apache.commons</groupId> |
| 151 | <artifactId>commons-jci-core</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 152 | <version>${commons-jci-core.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 153 | <scope>compile</scope> |
| 154 | </dependency> |
| 155 | |
| 156 | <!-- Gson --> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 157 | <dependency> |
| 158 | <groupId>com.google.code.gson</groupId> |
| 159 | <artifactId>gson</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 160 | <version>${gson.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 161 | <scope>compile</scope> |
| 162 | </dependency> |
| 163 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 164 | <!-- jersey --> |
| 165 | <dependency> |
| 166 | <groupId>org.glassfish.jersey.media</groupId> |
| 167 | <artifactId>jersey-media-json-jackson</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 168 | <version>${jersey-bom.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 169 | <scope>compile</scope> |
| 170 | </dependency> |
| 171 | |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 172 | <dependency> |
| 173 | <groupId>org.glassfish.jersey.containers</groupId> |
| 174 | <artifactId>jersey-container-servlet-core</artifactId> |
| 175 | <version>${jersey-bom.version}</version> |
| 176 | <scope>compile</scope> |
| 177 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 178 | |
| 179 | <!-- http client --> |
| 180 | <dependency> |
| 181 | <groupId>org.apache.httpcomponents</groupId> |
| 182 | <artifactId>httpclient</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 183 | <version>${httpclient.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 184 | <scope>compile</scope> |
| 185 | </dependency> |
| 186 | |
| 187 | <dependency> |
| 188 | <groupId>org.apache.httpcomponents</groupId> |
| 189 | <artifactId>httpcore</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 190 | <version>${httpcore.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 191 | <scope>compile</scope> |
| 192 | </dependency> |
| 193 | |
| 194 | <dependency> |
| 195 | <groupId>commons-logging</groupId> |
| 196 | <artifactId>commons-logging</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 197 | <version>${commons-logging}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 198 | <scope>compile</scope> |
| 199 | </dependency> |
| 200 | |
| 201 | <dependency> |
| 202 | <groupId>commons-codec</groupId> |
| 203 | <artifactId>commons-codec</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 204 | <version>${commons-codec}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 205 | <scope>compile</scope> |
| 206 | </dependency> |
| 207 | <!-- http client END --> |
| 208 | |
| 209 | <dependency> |
| 210 | <groupId>javax.servlet</groupId> |
| 211 | <artifactId>servlet-api</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 212 | <version>${servlet-api.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 213 | <scope>provided</scope> |
| 214 | </dependency> |
| 215 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 216 | <dependency> |
| 217 | <groupId>org.eclipse.jgit</groupId> |
| 218 | <artifactId>org.eclipse.jgit</artifactId> |
| 219 | <version>3.4.1.201406201815-r</version> |
| 220 | </dependency> |
| 221 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 222 | <!-- spring - used by A4C --> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 223 | <dependency> |
| 224 | <groupId>org.springframework</groupId> |
| 225 | <artifactId>spring-core</artifactId> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 226 | <version>${spring.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 227 | <scope>compile</scope> |
| 228 | </dependency> |
| 229 | |
| 230 | <dependency> |
| 231 | <groupId>org.springframework</groupId> |
| 232 | <artifactId>spring-context</artifactId> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 233 | <version>${spring.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 234 | <scope>compile</scope> |
| 235 | </dependency> |
| 236 | |
| 237 | <dependency> |
| 238 | <groupId>org.springframework</groupId> |
| 239 | <artifactId>spring-web</artifactId> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 240 | <version>${spring.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 241 | <scope>compile</scope> |
| 242 | </dependency> |
| 243 | |
| 244 | <dependency> |
| 245 | <groupId>org.springframework</groupId> |
| 246 | <artifactId>spring-webmvc</artifactId> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 247 | <version>${spring.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 248 | <scope>compile</scope> |
| 249 | </dependency> |
| 250 | |
| 251 | <dependency> |
| 252 | <groupId>org.springframework</groupId> |
| 253 | <artifactId>spring-aop</artifactId> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 254 | <version>${spring.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 255 | <scope>compile</scope> |
| 256 | </dependency> |
| 257 | |
| 258 | <dependency> |
| 259 | <groupId>org.springframework</groupId> |
| 260 | <artifactId>spring-beans</artifactId> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 261 | <version>${spring.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 262 | <scope>compile</scope> |
| 263 | </dependency> |
| 264 | |
| 265 | <dependency> |
| 266 | <groupId>org.springframework</groupId> |
| 267 | <artifactId>spring-expression</artifactId> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 268 | <version>${spring.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 269 | <scope>compile</scope> |
| 270 | </dependency> |
| 271 | |
| 272 | <dependency> |
| 273 | <groupId>org.codehaus.groovy</groupId> |
| 274 | <artifactId>groovy-all</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 275 | <version>${groovy.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 276 | <scope>compile</scope> |
| 277 | </dependency> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 278 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 279 | <dependency> |
| 280 | <groupId>org.codehaus.janino</groupId> |
| 281 | <artifactId>janino</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 282 | <version>${janino.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 283 | <scope>compile</scope> |
| 284 | </dependency> |
| 285 | |
| 286 | <dependency> |
| 287 | <groupId>org.codehaus.janino</groupId> |
| 288 | <artifactId>commons-compiler</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 289 | <version>${janino.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 290 | <scope>compile</scope> |
| 291 | </dependency> |
| 292 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 293 | <dependency> |
| 294 | <groupId>com.google.guava</groupId> |
| 295 | <artifactId>guava</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 296 | <version>${guava.version}</version> |
| 297 | <scope>compile</scope> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 298 | </dependency> |
| 299 | |
| 300 | <!-- TITAN --> |
| 301 | <dependency> |
| 302 | <groupId>com.thinkaurelius.titan</groupId> |
| 303 | <artifactId>titan-core</artifactId> |
| 304 | <version>${titan.version}</version> |
| 305 | <scope>compile</scope> |
| 306 | <exclusions> |
| 307 | <exclusion> |
| 308 | <groupId>org.json</groupId> |
| 309 | <artifactId>json</artifactId> |
| 310 | </exclusion> |
| 311 | <exclusion> |
| 312 | <artifactId>slf4j-log4j12</artifactId> |
| 313 | <groupId>org.slf4j</groupId> |
| 314 | </exclusion> |
| 315 | </exclusions> |
| 316 | </dependency> |
| 317 | |
| 318 | <dependency> |
Idan Amit | 39987c8 | 2017-09-13 13:51:41 +0300 | [diff] [blame] | 319 | <groupId>org.openecomp.sdc.sdc-titan-cassandra</groupId> |
| 320 | <artifactId>sdc-titan-cassandra</artifactId> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 321 | <version>${titan.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 322 | <scope>compile</scope> |
| 323 | <exclusions> |
| 324 | <exclusion> |
| 325 | <groupId>org.slf4j</groupId> |
| 326 | <artifactId>slf4j-log4j12</artifactId> |
| 327 | </exclusion> |
| 328 | <exclusion> |
| 329 | <groupId>io.netty</groupId> |
| 330 | <artifactId>netty-all</artifactId> |
| 331 | </exclusion> |
| 332 | </exclusions> |
| 333 | </dependency> |
| 334 | |
| 335 | <dependency> |
| 336 | <groupId>org.apache.commons</groupId> |
| 337 | <artifactId>commons-lang3</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 338 | <version>${lang3.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 339 | <scope>compile</scope> |
| 340 | </dependency> |
| 341 | <!-- TITAN END --> |
| 342 | |
| 343 | <dependency> |
| 344 | <groupId>com.googlecode.json-simple</groupId> |
| 345 | <artifactId>json-simple</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 346 | <version>${json-simple.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 347 | <scope>compile</scope> |
| 348 | |
| 349 | </dependency> |
| 350 | |
| 351 | <dependency> |
| 352 | <groupId>org.elasticsearch</groupId> |
| 353 | <artifactId>elasticsearch</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 354 | <version>${elastic-search.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 355 | <scope>compile</scope> |
| 356 | </dependency> |
| 357 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 358 | <dependency> |
| 359 | <groupId>org.elasticsearch.plugin</groupId> |
| 360 | <artifactId>shield</artifactId> |
| 361 | <version>${elastic-search.version}</version> |
| 362 | <scope>compile</scope> |
| 363 | </dependency> |
| 364 | <!-- functional java --> |
| 365 | <dependency> |
| 366 | <groupId>org.functionaljava</groupId> |
| 367 | <artifactId>functionaljava</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 368 | <version>${functionaljava.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 369 | <scope>compile</scope> |
| 370 | </dependency> |
| 371 | |
| 372 | <!-- Aspects --> |
| 373 | <dependency> |
| 374 | <groupId>com.jcabi</groupId> |
| 375 | <artifactId>jcabi-aspects</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 376 | <version>${jcabi.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 377 | <scope>compile</scope> |
| 378 | </dependency> |
| 379 | |
| 380 | <dependency> |
| 381 | <groupId>org.aspectj</groupId> |
| 382 | <artifactId>aspectjrt</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 383 | <version>${aspectjrt.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 384 | <scope>compile</scope> |
| 385 | </dependency> |
| 386 | |
| 387 | <!-- CAMBRIA CLIENT for U-EB --> |
| 388 | <dependency> |
| 389 | <groupId>com.att.nsa</groupId> |
| 390 | <artifactId>cambriaClient</artifactId> |
| 391 | <version>0.0.1</version> |
| 392 | <scope>compile</scope> |
| 393 | </dependency> |
| 394 | |
| 395 | <dependency> |
| 396 | <groupId>com.att.nsa</groupId> |
| 397 | <artifactId>saClientLibrary</artifactId> |
| 398 | <version>0.0.1</version> |
| 399 | <scope>compile</scope> |
| 400 | <exclusions> |
| 401 | <exclusion> |
| 402 | <groupId>org.slf4j</groupId> |
| 403 | <artifactId>slf4j-log4j12</artifactId> |
| 404 | </exclusion> |
| 405 | </exclusions> |
| 406 | </dependency> |
| 407 | |
| 408 | <dependency> |
| 409 | <groupId>org.json</groupId> |
| 410 | <artifactId>json</artifactId> |
| 411 | <version>20131018</version> |
| 412 | <scope>compile</scope> |
| 413 | </dependency> |
| 414 | <dependency> |
| 415 | <groupId>org.apache.tinkerpop</groupId> |
| 416 | <artifactId>tinkergraph-gremlin</artifactId> |
| 417 | <version>3.0.1-incubating</version> |
| 418 | <scope>compile</scope> |
| 419 | </dependency> |
| 420 | |
| 421 | <dependency> |
| 422 | <groupId>org.apache.tinkerpop</groupId> |
| 423 | <artifactId>gremlin-groovy</artifactId> |
| 424 | <version>3.0.1-incubating</version> |
| 425 | <scope>compile</scope> |
| 426 | </dependency> |
| 427 | |
| 428 | <!-- CASSANDRA --> |
| 429 | <dependency> |
| 430 | <groupId>com.datastax.cassandra</groupId> |
| 431 | <artifactId>cassandra-driver-core</artifactId> |
| 432 | <version>${cassandra.driver.version}</version> |
| 433 | <scope>compile</scope> |
| 434 | </dependency> |
| 435 | <dependency> |
| 436 | <groupId>com.datastax.cassandra</groupId> |
| 437 | <artifactId>cassandra-driver-mapping</artifactId> |
| 438 | <version>${cassandra.driver.version}</version> |
| 439 | <scope>compile</scope> |
| 440 | </dependency> |
| 441 | <!-- CASSANDRA END --> |
| 442 | |
| 443 | <!-- Inserted for ECOMP Portal Integration --> |
| 444 | <dependency> |
| 445 | <groupId>org.openecomp.ecompsdkos</groupId> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 446 | <artifactId>epsdk-fw</artifactId> |
Michael Lando | ebd7c8f | 2017-03-15 20:38:00 +0200 | [diff] [blame] | 447 | <version>${ecomp.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 448 | <scope>compile</scope> |
| 449 | <exclusions> |
| 450 | <exclusion> |
| 451 | <groupId>com.att.nsa</groupId> |
| 452 | <artifactId>cambriaClient</artifactId> |
| 453 | </exclusion> |
| 454 | <exclusion> |
| 455 | <artifactId>slf4j-log4j12</artifactId> |
| 456 | <groupId>org.slf4j</groupId> |
| 457 | </exclusion> |
| 458 | </exclusions> |
| 459 | </dependency> |
| 460 | |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 461 | <!--Artifact Generator--> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 462 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 463 | <groupId>org.openecomp.sdc.common</groupId> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 464 | <artifactId>openecomp-sdc-artifact-generator-api</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 465 | <version>${artifact-generator-api.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 466 | <scope>compile</scope> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 467 | <exclusions> |
| 468 | <exclusion> |
| 469 | <groupId>junit</groupId> |
| 470 | <artifactId>junit</artifactId> |
| 471 | </exclusion> |
| 472 | </exclusions> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 473 | </dependency> |
| 474 | |
| 475 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 476 | <groupId>org.openecomp.sdc.common</groupId> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 477 | <artifactId>openecomp-sdc-artifact-generator-core</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 478 | <version>${artifact-generator-core.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 479 | <scope>compile</scope> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 480 | <exclusions> |
| 481 | <exclusion> |
| 482 | <groupId>junit</groupId> |
| 483 | <artifactId>junit</artifactId> |
| 484 | </exclusion> |
| 485 | </exclusions> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 486 | </dependency> |
| 487 | |
| 488 | <dependency> |
Tal Gitelman | ffdda7d | 2017-07-02 15:33:25 +0300 | [diff] [blame] | 489 | <groupId>org.openecomp.sdc.common</groupId> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 490 | <artifactId>openecomp-common-lib</artifactId> |
| 491 | <version>${dox-common-lib.version}</version> |
| 492 | <type>pom</type> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 493 | <exclusions> |
| 494 | <exclusion> |
| 495 | <groupId>junit</groupId> |
| 496 | <artifactId>junit</artifactId> |
| 497 | </exclusion> |
| 498 | </exclusions> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 499 | </dependency> |
| 500 | |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 501 | <!--Jetty Proxy--> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 502 | <dependency> |
| 503 | <groupId>org.eclipse.jetty</groupId> |
| 504 | <artifactId>jetty-proxy</artifactId> |
| 505 | <version>${jetty.version}</version> |
| 506 | <scope>compile</scope> |
| 507 | </dependency> |
| 508 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 509 | <dependency> |
| 510 | <groupId>org.eclipse.jetty</groupId> |
| 511 | <artifactId>jetty-servlets</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 512 | <version>${jetty.version}</version> |
| 513 | <scope>compile</scope> |
| 514 | </dependency> |
| 515 | <!-- System metrics --> |
| 516 | <dependency> |
| 517 | <groupId>org.fusesource</groupId> |
| 518 | <artifactId>sigar</artifactId> |
| 519 | <version>${sigar.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 520 | <scope>compile</scope> |
| 521 | </dependency> |
| 522 | |
| 523 | <!-- TEST --> |
| 524 | <dependency> |
| 525 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 526 | <artifactId>jersey-test-framework-provider-bundle</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 527 | <version>${jersey-bom.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 528 | <type>pom</type> |
| 529 | <scope>test</scope> |
| 530 | </dependency> |
| 531 | |
| 532 | <dependency> |
| 533 | <groupId>org.eclipse.jetty</groupId> |
| 534 | <artifactId>jetty-servlet</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 535 | <version>${jetty.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 536 | <scope>test</scope> |
| 537 | </dependency> |
| 538 | |
| 539 | <dependency> |
| 540 | <groupId>org.eclipse.jetty</groupId> |
| 541 | <artifactId>jetty-webapp</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 542 | <version>${jetty.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 543 | <scope>test</scope> |
| 544 | </dependency> |
| 545 | |
| 546 | <dependency> |
| 547 | <groupId>junit</groupId> |
| 548 | <artifactId>junit</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 549 | <version>${junit.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 550 | <scope>test</scope> |
| 551 | </dependency> |
| 552 | |
| 553 | <dependency> |
| 554 | <groupId>org.mockito</groupId> |
Tal Gitelman | 51d50f0 | 2017-12-10 18:55:03 +0200 | [diff] [blame] | 555 | <artifactId>mockito-core</artifactId> |
Michael Lando | ce868e6 | 2017-12-25 20:07:37 +0200 | [diff] [blame] | 556 | <version>${mockito.version}</version> |
Tal Gitelman | 51d50f0 | 2017-12-10 18:55:03 +0200 | [diff] [blame] | 557 | <scope>test</scope> |
| 558 | </dependency> |
| 559 | |
| 560 | <dependency> |
| 561 | <groupId>org.assertj</groupId> |
| 562 | <artifactId>assertj-core</artifactId> |
Michael Lando | ce868e6 | 2017-12-25 20:07:37 +0200 | [diff] [blame] | 563 | <version>${assertj.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 564 | <scope>test</scope> |
| 565 | </dependency> |
| 566 | |
| 567 | <dependency> |
| 568 | <groupId>org.springframework</groupId> |
| 569 | <artifactId>spring-test</artifactId> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 570 | <version>${spring.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 571 | <scope>test</scope> |
| 572 | </dependency> |
| 573 | |
| 574 | <dependency> |
| 575 | <groupId>org.springframework</groupId> |
| 576 | <artifactId>spring-tx</artifactId> |
| 577 | <version>${spring.version}</version> |
| 578 | <scope>test</scope> |
| 579 | </dependency> |
| 580 | </dependencies> |
| 581 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 582 | <build> |
| 583 | |
| 584 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 585 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 586 | <plugins> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 587 | <plugin> |
| 588 | <groupId>org.apache.maven.plugins</groupId> |
| 589 | <artifactId>maven-war-plugin</artifactId> |
| 590 | <version>2.6</version> |
| 591 | <configuration> |
| 592 | <packagingExcludes>WEB-INF\lib\slf4j-log4j*.jar, |
| 593 | WEB-INF/classes/elasticsearch.yml, |
| 594 | WEB-INF/classes/portal.properties</packagingExcludes> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 595 | <archive> |
| 596 | <manifestEntries> |
Michael Lando | b7bc7da | 2017-06-09 12:20:38 +0300 | [diff] [blame] | 597 | <SDC-Version>${project.version}</SDC-Version> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 598 | </manifestEntries> |
| 599 | <manifest> |
| 600 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
| 601 | <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> |
| 602 | </manifest> |
| 603 | </archive> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 604 | |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 605 | <webResources> |
| 606 | <resource> |
| 607 | <directory>src/main/resources</directory> |
| 608 | <directory>src/main/resources/swagger</directory> |
| 609 | </resource> |
| 610 | </webResources> |
| 611 | <attachClasses>true</attachClasses> |
| 612 | </configuration> |
| 613 | </plugin> |
| 614 | |
| 615 | <plugin> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 616 | <groupId>com.jcabi</groupId> |
| 617 | <artifactId>jcabi-maven-plugin</artifactId> |
| 618 | <version>${jcabi.plugin.version}</version> |
| 619 | <executions> |
| 620 | <execution> |
| 621 | <goals> |
| 622 | <goal>ajc</goal> |
| 623 | </goals> |
| 624 | </execution> |
| 625 | </executions> |
| 626 | </plugin> |
| 627 | |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 628 | <plugin> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 629 | <groupId>org.apache.maven.plugins</groupId> |
| 630 | <artifactId>maven-assembly-plugin</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 631 | <executions> |
| 632 | <execution> |
| 633 | <id>normatives</id> |
| 634 | <phase>package</phase> |
| 635 | <goals> |
| 636 | <goal>single</goal> |
| 637 | </goals> |
| 638 | <configuration> |
| 639 | <finalName>normatives</finalName> |
| 640 | <appendAssemblyId>false</appendAssemblyId> |
| 641 | <descriptor>${project.basedir}/normatives.xml</descriptor> |
| 642 | </configuration> |
| 643 | </execution> |
| 644 | </executions> |
| 645 | </plugin> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 646 | |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 647 | </plugins> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 648 | |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 649 | <pluginManagement> |
| 650 | <plugins> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 651 | <!--This plugin's configuration is used to store Eclipse m2e settings |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 652 | only. It has no influence on the Maven build itself. --> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 653 | <plugin> |
| 654 | <groupId>org.eclipse.m2e</groupId> |
| 655 | <artifactId>lifecycle-mapping</artifactId> |
| 656 | <version>1.0.0</version> |
| 657 | <configuration> |
| 658 | <lifecycleMappingMetadata> |
| 659 | <pluginExecutions> |
| 660 | <pluginExecution> |
| 661 | <pluginExecutionFilter> |
| 662 | <groupId>com.googlecode.maven-download-plugin</groupId> |
| 663 | <artifactId>download-maven-plugin</artifactId> |
| 664 | <versionRange>[1.2.1,)</versionRange> |
| 665 | <goals> |
| 666 | <goal>wget</goal> |
| 667 | </goals> |
| 668 | </pluginExecutionFilter> |
| 669 | <action> |
| 670 | <ignore></ignore> |
| 671 | </action> |
| 672 | </pluginExecution> |
| 673 | |
| 674 | <pluginExecution> |
| 675 | <pluginExecutionFilter> |
| 676 | <groupId>com.jcabi</groupId> |
| 677 | <artifactId>jcabi-maven-plugin</artifactId> |
| 678 | <versionRange>[0.0,)</versionRange> |
| 679 | <goals> |
| 680 | <goal>ajc</goal> |
| 681 | </goals> |
| 682 | </pluginExecutionFilter> |
| 683 | <action> |
| 684 | <execute /> |
| 685 | </action> |
| 686 | </pluginExecution> |
| 687 | |
| 688 | </pluginExecutions> |
| 689 | </lifecycleMappingMetadata> |
| 690 | </configuration> |
| 691 | </plugin> |
| 692 | <plugin> |
| 693 | <groupId>org.apache.maven.plugins</groupId> |
| 694 | <artifactId>maven-deploy-plugin</artifactId> |
| 695 | <version>2.7</version> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 696 | <configuration> |
| 697 | <skip>true</skip> |
| 698 | </configuration> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 699 | </plugin> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 700 | </plugins> |
| 701 | </pluginManagement> |
| 702 | <!-- Swagger Plugins End --> |
| 703 | </build> |
| 704 | |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 705 | <profiles> |
| 706 | <profile> |
| 707 | <id>catalog</id> |
| 708 | <activation> |
| 709 | <activeByDefault>false</activeByDefault> |
| 710 | </activation> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 711 | |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 712 | <build> |
Michael Lando | c61d224 | 2017-06-20 11:07:13 +0300 | [diff] [blame] | 713 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 714 | </build> |
| 715 | </profile> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 716 | </profiles> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 717 | </project> |