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" |
Yuli Shlosberg | af70a20 | 2018-09-25 17:16:48 +0300 | [diff] [blame] | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 4 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 5 | <artifactId>catalog-be</artifactId> |
| 6 | <packaging>war</packaging> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 7 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 8 | <parent> |
| 9 | <groupId>org.openecomp.sdc</groupId> |
| 10 | <artifactId>sdc-main</artifactId> |
Michael Lando | d8a0dea | 2018-06-02 19:23:27 +0300 | [diff] [blame] | 11 | <version>1.3.0-SNAPSHOT</version> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 12 | </parent> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 13 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 14 | <properties> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 15 | </properties> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 16 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 17 | <dependencies> |
| 18 | <!--JSON and YAML Parsing--> |
| 19 | <dependency> |
| 20 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 21 | <artifactId>jackson-dataformat-yaml</artifactId> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 22 | <version>${jackson.version}</version> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 23 | <scope>compile</scope> |
| 24 | </dependency> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 25 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 26 | <dependency> |
| 27 | <groupId>com.fasterxml.jackson.core</groupId> |
| 28 | <artifactId>jackson-databind</artifactId> |
| 29 | <version>${jackson.version}</version> |
| 30 | <scope>compile</scope> |
| 31 | </dependency> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 32 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 33 | <dependency> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 34 | <groupId>org.openecomp.sdc</groupId> |
| 35 | <artifactId>security-utils</artifactId> |
| 36 | <version>${project.version}</version> |
| 37 | <scope>compile</scope> |
| 38 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 39 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 40 | <!-- Swagger Dependencies Start --> |
| 41 | <dependency> |
| 42 | <groupId>io.swagger</groupId> |
| 43 | <artifactId>swagger-jersey2-jaxrs</artifactId> |
| 44 | <scope>compile</scope> |
Michael Lando | cb1b7da | 2018-05-22 20:43:41 +0300 | [diff] [blame] | 45 | <version>1.5.15</version> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 46 | </dependency> |
| 47 | <!-- Swagger Dependencies End --> |
Tal Gitelman | ed7e1c3 | 2017-06-29 19:30:00 +0300 | [diff] [blame] | 48 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 49 | <dependency> |
| 50 | <groupId>org.openecomp.sdc</groupId> |
| 51 | <artifactId>common-app-api</artifactId> |
| 52 | <version>${project.version}</version> |
| 53 | <scope>compile</scope> |
| 54 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 55 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 56 | <dependency> |
| 57 | <groupId>org.openecomp.sdc.be</groupId> |
| 58 | <artifactId>common-be</artifactId> |
| 59 | <version>${project.version}</version> |
| 60 | <scope>compile</scope> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.openecomp.sdc.be</groupId> |
| 64 | <artifactId>catalog-dao</artifactId> |
| 65 | <version>${project.version}</version> |
| 66 | <scope>compile</scope> |
| 67 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 68 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 69 | <dependency> |
| 70 | <groupId>org.openecomp.sdc.be</groupId> |
| 71 | <artifactId>catalog-model</artifactId> |
| 72 | <version>${project.version}</version> |
| 73 | <scope>compile</scope> |
| 74 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 75 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 76 | <dependency> |
| 77 | <groupId>ch.qos.logback</groupId> |
| 78 | <artifactId>logback-classic</artifactId> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 79 | <version>${logback.version}</version> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 80 | <scope>compile</scope> |
| 81 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 82 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 83 | <!-- Snake Yaml --> |
| 84 | <dependency> |
| 85 | <groupId>org.yaml</groupId> |
| 86 | <artifactId>snakeyaml</artifactId> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 87 | <version>${snakeyaml.version}</version> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 88 | <scope>compile</scope> |
| 89 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 90 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 91 | <!-- File changes listener --> |
| 92 | <dependency> |
| 93 | <groupId>org.apache.commons</groupId> |
| 94 | <artifactId>commons-jci-core</artifactId> |
| 95 | <version>${commons-jci-core.version}</version> |
| 96 | <scope>compile</scope> |
| 97 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 98 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 99 | <!-- Gson --> |
| 100 | <dependency> |
| 101 | <groupId>com.google.code.gson</groupId> |
| 102 | <artifactId>gson</artifactId> |
| 103 | <version>${gson.version}</version> |
| 104 | <scope>compile</scope> |
| 105 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 106 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 107 | <!-- jersey --> |
| 108 | <dependency> |
| 109 | <groupId>org.glassfish.jersey.media</groupId> |
| 110 | <artifactId>jersey-media-json-jackson</artifactId> |
| 111 | <version>${jersey-bom.version}</version> |
| 112 | <scope>compile</scope> |
| 113 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 114 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 115 | <dependency> |
| 116 | <groupId>org.glassfish.jersey.containers</groupId> |
| 117 | <artifactId>jersey-container-servlet-core</artifactId> |
| 118 | <version>${jersey-bom.version}</version> |
| 119 | <scope>compile</scope> |
| 120 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 121 | |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 122 | <dependency> |
| 123 | <groupId>org.glassfish.jersey.media</groupId> |
| 124 | <artifactId>jersey-media-multipart</artifactId> |
| 125 | <version>${jersey-bom.version}</version> |
| 126 | <scope>compile</scope> |
| 127 | </dependency> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 128 | <dependency> |
| 129 | <groupId>org.glassfish.jersey.ext</groupId> |
| 130 | <artifactId>jersey-spring4</artifactId> |
| 131 | <version>${jersey-bom.version}</version> |
| 132 | <exclusions> |
| 133 | <exclusion> |
| 134 | <groupId>org.springframework</groupId> |
| 135 | <artifactId>spring-web</artifactId> |
| 136 | </exclusion> |
| 137 | <exclusion> |
| 138 | <groupId>org.springframework</groupId> |
| 139 | <artifactId>spring-beans</artifactId> |
| 140 | </exclusion> |
| 141 | <exclusion> |
| 142 | <groupId>org.springframework</groupId> |
| 143 | <artifactId>spring-core</artifactId> |
| 144 | </exclusion> |
| 145 | <exclusion> |
| 146 | <groupId>org.springframework</groupId> |
| 147 | <artifactId>spring-aop</artifactId> |
| 148 | </exclusion> |
| 149 | <!-- Transitive dependency of spring-bridge --> |
| 150 | <exclusion> |
| 151 | <groupId>org.springframework</groupId> |
| 152 | <artifactId>spring-context</artifactId> |
| 153 | </exclusion> |
| 154 | </exclusions> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 155 | |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 156 | </dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 157 | |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 158 | <!--asm-all-repackaged is a jersey dependency. in current version jersey depends on a version that was compiled using java 9 compiler |
| 159 | currently our jetty (v9.3.6) does not support java 9. as soon as jetty gets upgraded we will remove this dependency--> |
| 160 | <dependency> |
| 161 | <groupId>org.glassfish.hk2.external</groupId> |
| 162 | <artifactId>asm-all-repackaged</artifactId> |
| 163 | </dependency> |
| 164 | |
| 165 | <dependency> |
| 166 | <groupId>org.glassfish.jersey.ext</groupId> |
| 167 | <artifactId>jersey-bean-validation</artifactId> |
| 168 | </dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 169 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 170 | <!-- http client --> |
| 171 | <dependency> |
| 172 | <groupId>org.apache.httpcomponents</groupId> |
| 173 | <artifactId>httpclient</artifactId> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 174 | <version>${httpclient.version}</version> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 175 | <scope>compile</scope> |
| 176 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 177 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 178 | <dependency> |
| 179 | <groupId>org.apache.httpcomponents</groupId> |
| 180 | <artifactId>httpcore</artifactId> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 181 | <version>${httpcore.version}</version> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 182 | <scope>compile</scope> |
| 183 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 184 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 185 | <dependency> |
| 186 | <groupId>commons-logging</groupId> |
| 187 | <artifactId>commons-logging</artifactId> |
| 188 | <version>${commons-logging}</version> |
| 189 | <scope>compile</scope> |
| 190 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 191 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 192 | <dependency> |
| 193 | <groupId>commons-codec</groupId> |
| 194 | <artifactId>commons-codec</artifactId> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 195 | <version>${commons-codec}</version> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 196 | <scope>compile</scope> |
| 197 | </dependency> |
| 198 | <!-- http client END --> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 199 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 200 | <dependency> |
| 201 | <groupId>javax.servlet</groupId> |
vempo | d6d1291 | 2018-07-09 14:27:57 +0300 | [diff] [blame] | 202 | <artifactId>javax.servlet-api</artifactId> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 203 | <version>${servlet-api.version}</version> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 204 | <scope>provided</scope> |
| 205 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 206 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 207 | <dependency> |
| 208 | <groupId>org.eclipse.jgit</groupId> |
| 209 | <artifactId>org.eclipse.jgit</artifactId> |
| 210 | <version>3.4.1.201406201815-r</version> |
| 211 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 212 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 213 | <!-- spring - used by A4C --> |
| 214 | <dependency> |
| 215 | <groupId>org.springframework</groupId> |
| 216 | <artifactId>spring-core</artifactId> |
| 217 | <version>${spring.version}</version> |
| 218 | <scope>compile</scope> |
| 219 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 220 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 221 | <dependency> |
| 222 | <groupId>org.springframework</groupId> |
| 223 | <artifactId>spring-context</artifactId> |
| 224 | <version>${spring.version}</version> |
| 225 | <scope>compile</scope> |
| 226 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 227 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 228 | <dependency> |
| 229 | <groupId>org.springframework</groupId> |
| 230 | <artifactId>spring-web</artifactId> |
| 231 | <version>${spring.version}</version> |
| 232 | <scope>compile</scope> |
| 233 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 234 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 235 | <dependency> |
| 236 | <groupId>org.springframework</groupId> |
| 237 | <artifactId>spring-webmvc</artifactId> |
| 238 | <version>${spring.version}</version> |
| 239 | <scope>compile</scope> |
| 240 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 241 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 242 | <dependency> |
| 243 | <groupId>org.springframework</groupId> |
| 244 | <artifactId>spring-aop</artifactId> |
| 245 | <version>${spring.version}</version> |
| 246 | <scope>compile</scope> |
| 247 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 248 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 249 | <dependency> |
| 250 | <groupId>org.springframework</groupId> |
| 251 | <artifactId>spring-beans</artifactId> |
| 252 | <version>${spring.version}</version> |
| 253 | <scope>compile</scope> |
| 254 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 255 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 256 | <dependency> |
| 257 | <groupId>org.springframework</groupId> |
| 258 | <artifactId>spring-expression</artifactId> |
| 259 | <version>${spring.version}</version> |
| 260 | <scope>compile</scope> |
| 261 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 262 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 263 | <dependency> |
| 264 | <groupId>org.codehaus.groovy</groupId> |
Tal Gitelman | a3b79a2 | 2018-09-25 17:22:34 +0300 | [diff] [blame] | 265 | <artifactId>groovy</artifactId> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 266 | <scope>compile</scope> |
| 267 | </dependency> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 268 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 269 | <dependency> |
| 270 | <groupId>org.codehaus.janino</groupId> |
| 271 | <artifactId>janino</artifactId> |
| 272 | <version>${janino.version}</version> |
| 273 | <scope>compile</scope> |
| 274 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 275 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 276 | <dependency> |
| 277 | <groupId>org.codehaus.janino</groupId> |
| 278 | <artifactId>commons-compiler</artifactId> |
| 279 | <version>${janino.version}</version> |
| 280 | <scope>compile</scope> |
| 281 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 282 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 283 | <dependency> |
| 284 | <groupId>com.google.guava</groupId> |
| 285 | <artifactId>guava</artifactId> |
| 286 | <version>${guava.version}</version> |
| 287 | <scope>compile</scope> |
| 288 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 289 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 290 | <!-- TITAN --> |
| 291 | <dependency> |
| 292 | <groupId>com.thinkaurelius.titan</groupId> |
| 293 | <artifactId>titan-core</artifactId> |
| 294 | <version>${titan.version}</version> |
| 295 | <scope>compile</scope> |
| 296 | <exclusions> |
| 297 | <exclusion> |
| 298 | <groupId>org.json</groupId> |
| 299 | <artifactId>json</artifactId> |
| 300 | </exclusion> |
| 301 | <exclusion> |
| 302 | <artifactId>slf4j-log4j12</artifactId> |
| 303 | <groupId>org.slf4j</groupId> |
| 304 | </exclusion> |
Tal Gitelman | 7678396 | 2018-09-06 18:16:24 +0300 | [diff] [blame] | 305 | <exclusion> |
| 306 | <artifactId>commons-collections</artifactId> |
| 307 | <groupId>commons-collections</groupId> |
| 308 | </exclusion> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 309 | </exclusions> |
| 310 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 311 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 312 | <dependency> |
Michael Lando | de67b61 | 2018-03-15 16:53:05 +0200 | [diff] [blame] | 313 | <groupId>org.onap.sdc.sdc-titan-cassandra</groupId> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 314 | <artifactId>sdc-titan-cassandra</artifactId> |
Michael Lando | de67b61 | 2018-03-15 16:53:05 +0200 | [diff] [blame] | 315 | <version>${sdc.titan.version}</version> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 316 | <scope>compile</scope> |
| 317 | <exclusions> |
| 318 | <exclusion> |
| 319 | <groupId>org.slf4j</groupId> |
| 320 | <artifactId>slf4j-log4j12</artifactId> |
| 321 | </exclusion> |
| 322 | <exclusion> |
| 323 | <groupId>io.netty</groupId> |
| 324 | <artifactId>netty-all</artifactId> |
| 325 | </exclusion> |
| 326 | </exclusions> |
| 327 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 328 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 329 | <dependency> |
| 330 | <groupId>org.apache.commons</groupId> |
| 331 | <artifactId>commons-lang3</artifactId> |
| 332 | <version>${lang3.version}</version> |
| 333 | <scope>compile</scope> |
| 334 | </dependency> |
| 335 | <!-- TITAN END --> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 336 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 337 | <dependency> |
| 338 | <groupId>com.googlecode.json-simple</groupId> |
| 339 | <artifactId>json-simple</artifactId> |
| 340 | <version>${json-simple.version}</version> |
| 341 | <scope>compile</scope> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 342 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 343 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 344 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 345 | <dependency> |
| 346 | <groupId>org.elasticsearch</groupId> |
| 347 | <artifactId>elasticsearch</artifactId> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 348 | <version>${elastic-search.version}</version> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 349 | <scope>compile</scope> |
| 350 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 351 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 352 | <!-- functional java --> |
| 353 | <dependency> |
| 354 | <groupId>org.functionaljava</groupId> |
| 355 | <artifactId>functionaljava</artifactId> |
| 356 | <version>${functionaljava.version}</version> |
| 357 | <scope>compile</scope> |
| 358 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 359 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 360 | <!-- Aspects --> |
| 361 | <dependency> |
| 362 | <groupId>com.jcabi</groupId> |
| 363 | <artifactId>jcabi-aspects</artifactId> |
| 364 | <version>${jcabi.version}</version> |
| 365 | <scope>compile</scope> |
| 366 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 367 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 368 | <dependency> |
| 369 | <groupId>org.aspectj</groupId> |
| 370 | <artifactId>aspectjrt</artifactId> |
| 371 | <version>${aspectjrt.version}</version> |
| 372 | <scope>compile</scope> |
| 373 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 374 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 375 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 376 | <!-- CAMBRIA CLIENT for U-EB --> |
| 377 | <dependency> |
| 378 | <groupId>com.att.nsa</groupId> |
| 379 | <artifactId>cambriaClient</artifactId> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 380 | <version>1.2.1-oss</version> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 381 | <scope>compile</scope> |
| 382 | <exclusions> |
| 383 | <exclusion> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 384 | <groupId>com.att.nsa</groupId> |
| 385 | <artifactId>saClientLibrary</artifactId> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 386 | </exclusion> |
| 387 | </exclusions> |
| 388 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 389 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 390 | <dependency> |
| 391 | <groupId>org.json</groupId> |
| 392 | <artifactId>json</artifactId> |
| 393 | <version>20131018</version> |
| 394 | <scope>compile</scope> |
| 395 | </dependency> |
| 396 | <dependency> |
| 397 | <groupId>org.apache.tinkerpop</groupId> |
| 398 | <artifactId>tinkergraph-gremlin</artifactId> |
| 399 | <version>3.0.1-incubating</version> |
| 400 | <scope>compile</scope> |
| 401 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 402 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 403 | <dependency> |
| 404 | <groupId>org.apache.tinkerpop</groupId> |
| 405 | <artifactId>gremlin-groovy</artifactId> |
| 406 | <version>3.0.1-incubating</version> |
| 407 | <scope>compile</scope> |
| 408 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 409 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 410 | <!-- CASSANDRA --> |
| 411 | <dependency> |
| 412 | <groupId>com.datastax.cassandra</groupId> |
| 413 | <artifactId>cassandra-driver-core</artifactId> |
| 414 | <version>${cassandra.driver.version}</version> |
| 415 | <scope>compile</scope> |
| 416 | </dependency> |
| 417 | <dependency> |
| 418 | <groupId>com.datastax.cassandra</groupId> |
| 419 | <artifactId>cassandra-driver-mapping</artifactId> |
| 420 | <version>${cassandra.driver.version}</version> |
| 421 | <scope>compile</scope> |
| 422 | </dependency> |
| 423 | <!-- CASSANDRA END --> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 424 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 425 | <!-- Inserted for ECOMP Portal Integration --> |
| 426 | <dependency> |
| 427 | <groupId>org.openecomp.ecompsdkos</groupId> |
| 428 | <artifactId>epsdk-fw</artifactId> |
| 429 | <version>${ecomp.version}</version> |
| 430 | <scope>compile</scope> |
| 431 | <exclusions> |
| 432 | <exclusion> |
| 433 | <groupId>com.att.nsa</groupId> |
| 434 | <artifactId>cambriaClient</artifactId> |
| 435 | </exclusion> |
| 436 | <exclusion> |
| 437 | <artifactId>slf4j-log4j12</artifactId> |
| 438 | <groupId>org.slf4j</groupId> |
| 439 | </exclusion> |
| 440 | </exclusions> |
| 441 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 442 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 443 | <!--Jetty Proxy--> |
| 444 | <dependency> |
| 445 | <groupId>org.eclipse.jetty</groupId> |
| 446 | <artifactId>jetty-proxy</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 447 | <version>${jetty.version}</version> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 448 | <scope>compile</scope> |
| 449 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 450 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 451 | <dependency> |
| 452 | <groupId>org.eclipse.jetty</groupId> |
| 453 | <artifactId>jetty-servlets</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 454 | <version>${jetty.version}</version> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 455 | <scope>compile</scope> |
| 456 | </dependency> |
| 457 | <!-- System metrics --> |
| 458 | <dependency> |
| 459 | <groupId>org.fusesource</groupId> |
| 460 | <artifactId>sigar</artifactId> |
| 461 | <version>${sigar.version}</version> |
| 462 | <scope>compile</scope> |
| 463 | </dependency> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 464 | <dependency> |
| 465 | <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId> |
| 466 | <artifactId>dmaapClient</artifactId> |
| 467 | <version>1.1.3</version> |
| 468 | <scope>compile</scope> |
| 469 | <exclusions> |
| 470 | <exclusion> |
| 471 | <groupId>com.att.aft</groupId> |
| 472 | <artifactId>dme2</artifactId> |
| 473 | </exclusion> |
| 474 | </exclusions> |
| 475 | </dependency> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 476 | <dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 477 | <groupId>com.att.aft</groupId> |
| 478 | <artifactId>dme2</artifactId> |
| 479 | <version>3.1.200-oss</version> |
| 480 | </dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 481 | |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 482 | <dependency> |
| 483 | <groupId>javax.jms</groupId> |
| 484 | <artifactId>jms</artifactId> |
| 485 | <version>1.1</version> |
| 486 | <scope>provided</scope> |
| 487 | </dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 488 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 489 | <!-- TEST --> |
| 490 | <dependency> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 491 | <groupId>org.assertj</groupId> |
| 492 | <artifactId>assertj-core</artifactId> |
| 493 | <scope>test</scope> |
| 494 | </dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 495 | |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 496 | <dependency> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 497 | <groupId>org.glassfish.jersey.test-framework.providers</groupId> |
| 498 | <artifactId>jersey-test-framework-provider-bundle</artifactId> |
| 499 | <version>${jersey-bom.version}</version> |
| 500 | <type>pom</type> |
| 501 | <scope>test</scope> |
| 502 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 503 | |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 504 | <dependency> |
| 505 | <groupId>org.glassfish.jersey.core</groupId> |
| 506 | <artifactId>jersey-client</artifactId> |
| 507 | <version>${jersey-bom.version}</version> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 508 | </dependency> |
| 509 | |
| 510 | <dependency> |
| 511 | <groupId>com.github.tomakehurst</groupId> |
| 512 | <artifactId>wiremock-standalone</artifactId> |
| 513 | <scope>test</scope> |
| 514 | </dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 515 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 516 | <dependency> |
| 517 | <groupId>org.eclipse.jetty</groupId> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 518 | <artifactId>jetty-webapp</artifactId> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 519 | <version>${jetty.version}</version> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 520 | <scope>test</scope> |
| 521 | </dependency> |
| 522 | |
| 523 | <dependency> |
| 524 | <groupId>junit</groupId> |
| 525 | <artifactId>junit</artifactId> |
| 526 | <version>${junit.version}</version> |
| 527 | <scope>test</scope> |
| 528 | </dependency> |
| 529 | |
| 530 | <dependency> |
| 531 | <groupId>org.mockito</groupId> |
| 532 | <artifactId>mockito-core</artifactId> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 533 | <scope>test</scope> |
| 534 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 535 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 536 | <dependency> |
| 537 | <groupId>org.springframework</groupId> |
| 538 | <artifactId>spring-test</artifactId> |
| 539 | <version>${spring.version}</version> |
| 540 | <scope>test</scope> |
| 541 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 542 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 543 | <dependency> |
| 544 | <groupId>org.springframework</groupId> |
| 545 | <artifactId>spring-tx</artifactId> |
| 546 | <version>${spring.version}</version> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 547 | </dependency> |
| 548 | |
| 549 | <dependency> |
| 550 | <groupId>io.cucumber</groupId> |
| 551 | <artifactId>cucumber-java</artifactId> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 552 | <scope>test</scope> |
| 553 | </dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 554 | |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 555 | <dependency> |
| 556 | <groupId>io.cucumber</groupId> |
| 557 | <artifactId>cucumber-junit</artifactId> |
| 558 | <scope>test</scope> |
| 559 | </dependency> |
dekstroza | 37843cb | 2018-05-18 14:42:24 +0100 | [diff] [blame] | 560 | |
| 561 | <dependency> |
| 562 | <groupId>org.jmockit</groupId> |
| 563 | <artifactId>jmockit</artifactId> |
| 564 | <version>${jmockit.version}</version> |
| 565 | <scope>test</scope> |
| 566 | </dependency> |
Tal Gitelman | 364c0f5 | 2018-06-13 14:51:53 +0300 | [diff] [blame] | 567 | |
| 568 | <dependency> |
| 569 | <groupId>com.google.code.bean-matchers</groupId> |
| 570 | <artifactId>bean-matchers</artifactId> |
| 571 | <version>0.11</version> |
| 572 | <scope>test</scope> |
| 573 | </dependency> |
Tal Gitelman | e019937 | 2018-09-18 11:57:53 +0300 | [diff] [blame] | 574 | |
| 575 | <dependency> |
| 576 | <groupId>org.codehaus.groovy</groupId> |
| 577 | <artifactId>groovy</artifactId> |
| 578 | <version>2.4.8</version> |
| 579 | </dependency> |
Yuli Shlosberg | 79e3627 | 2018-10-02 14:45:26 +0300 | [diff] [blame] | 580 | |
| 581 | <dependency> |
| 582 | <groupId>io.netty</groupId> |
| 583 | <artifactId>netty-handler</artifactId> |
| 584 | </dependency> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 585 | </dependencies> |
dekstroza | 37843cb | 2018-05-18 14:42:24 +0100 | [diff] [blame] | 586 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 587 | <build> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 588 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 589 | <finalName>${project.artifactId}-${project.version}</finalName> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 590 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 591 | <plugins> |
| 592 | <plugin> |
| 593 | <groupId>org.apache.maven.plugins</groupId> |
| 594 | <artifactId>maven-war-plugin</artifactId> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 595 | <configuration> |
| 596 | <packagingExcludes>WEB-INF\lib\slf4j-log4j*.jar, |
| 597 | WEB-INF/classes/elasticsearch.yml, |
| 598 | WEB-INF/classes/portal.properties |
| 599 | </packagingExcludes> |
| 600 | <archive> |
| 601 | <manifestEntries> |
| 602 | <SDC-Version>${project.version}</SDC-Version> |
| 603 | </manifestEntries> |
| 604 | <manifest> |
| 605 | <addDefaultImplementationEntries>true</addDefaultImplementationEntries> |
| 606 | <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> |
| 607 | </manifest> |
| 608 | </archive> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 609 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 610 | <webResources> |
| 611 | <resource> |
| 612 | <directory>src/main/resources</directory> |
| 613 | <directory>src/main/resources/swagger</directory> |
| 614 | </resource> |
| 615 | </webResources> |
| 616 | <attachClasses>true</attachClasses> |
| 617 | </configuration> |
| 618 | </plugin> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 619 | <plugin> |
dekstroza | 37843cb | 2018-05-18 14:42:24 +0100 | [diff] [blame] | 620 | <groupId>com.github.sylvainlaurent.maven</groupId> |
| 621 | <artifactId>yaml-json-validator-maven-plugin</artifactId> |
| 622 | <executions> |
| 623 | <execution> |
| 624 | <id>validate</id> |
| 625 | <phase>validate</phase> |
| 626 | <goals> |
| 627 | <goal>validate</goal> |
| 628 | </goals> |
| 629 | <configuration> |
| 630 | <validationSets> |
| 631 | <validationSet> |
| 632 | <includes> |
| 633 | <include>src/main/resources/**/*.y*ml</include> |
| 634 | <include>src/test/resources/**/*.y*ml</include> |
| 635 | </includes> |
| 636 | </validationSet> |
| 637 | <validationSet> |
| 638 | <includes> |
| 639 | <include>src/main/resources/**/*.json</include> |
| 640 | <include>src/test/resources/**/*.json</include> |
| 641 | </includes> |
| 642 | </validationSet> |
| 643 | </validationSets> |
| 644 | </configuration> |
| 645 | </execution> |
| 646 | </executions> |
| 647 | </plugin> |
| 648 | <plugin> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 649 | <groupId>com.jcabi</groupId> |
| 650 | <artifactId>jcabi-maven-plugin</artifactId> |
Michael Lando | dc856bb | 2018-08-13 13:27:52 +0300 | [diff] [blame] | 651 | <version>${jcabi.maven.plugin.version}</version> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 652 | <executions> |
| 653 | <execution> |
| 654 | <goals> |
| 655 | <goal>ajc</goal> |
| 656 | </goals> |
| 657 | </execution> |
| 658 | </executions> |
| 659 | </plugin> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 660 | <plugin> |
| 661 | <groupId>org.apache.maven.plugins</groupId> |
| 662 | <artifactId>maven-assembly-plugin</artifactId> |
| 663 | <executions> |
| 664 | <execution> |
| 665 | <id>normatives</id> |
| 666 | <phase>package</phase> |
| 667 | <goals> |
| 668 | <goal>single</goal> |
| 669 | </goals> |
| 670 | <configuration> |
| 671 | <finalName>normatives</finalName> |
| 672 | <appendAssemblyId>false</appendAssemblyId> |
Michael Lando | 02ab651 | 2018-04-05 23:32:27 +0300 | [diff] [blame] | 673 | <descriptors> |
| 674 | <descriptor>${project.basedir}/normatives.xml</descriptor> |
| 675 | </descriptors> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 676 | </configuration> |
| 677 | </execution> |
| 678 | </executions> |
| 679 | </plugin> |
| 680 | <plugin> |
Michael Lando | dc856bb | 2018-08-13 13:27:52 +0300 | [diff] [blame] | 681 | <groupId>org.apache.maven.plugins</groupId> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 682 | <artifactId>maven-clean-plugin</artifactId> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 683 | <executions> |
| 684 | <execution> |
| 685 | <id>clean.sdc.backend.folder</id> |
| 686 | <phase>clean</phase> |
| 687 | <goals> |
| 688 | <goal>clean</goal> |
| 689 | </goals> |
| 690 | <configuration> |
| 691 | <filesets> |
| 692 | <!-- static configuration files --> |
| 693 | <fileset> |
| 694 | <directory> |
| 695 | ${project.parent.basedir}/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default |
| 696 | </directory> |
| 697 | <followSymlinks>false</followSymlinks> |
| 698 | <includes> |
| 699 | <include>Artifact-Generator.properties</include> |
| 700 | <include>error-configuration.yaml</include> |
| 701 | <include>ecomp-error-configuration.yaml</include> |
| 702 | <include>logback.xml</include> |
| 703 | </includes> |
| 704 | </fileset> |
| 705 | <!-- BE WAR's --> |
| 706 | <fileset> |
| 707 | <directory>${project.parent.basedir}/catalog-be/sdc-backend</directory> |
| 708 | <followSymlinks>false</followSymlinks> |
| 709 | <includes> |
| 710 | <include>*.war</include> |
| 711 | </includes> |
| 712 | </fileset> |
| 713 | <fileset> |
| 714 | <directory> |
| 715 | ${project.basedir}/sdc-backend-init/chef-repo/cookbooks/sdc-normatives/files/default |
| 716 | </directory> |
| 717 | <followSymlinks>false</followSymlinks> |
| 718 | <includes> |
| 719 | <include>normatives.tar.gz</include> |
| 720 | </includes> |
| 721 | </fileset> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 722 | |
| 723 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 724 | </filesets> |
| 725 | </configuration> |
| 726 | </execution> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 727 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 728 | <execution> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 729 | <id>clean-static-files</id> |
| 730 | <phase>clean</phase> |
| 731 | <goals> |
| 732 | <goal>clean</goal> |
| 733 | </goals> |
| 734 | <configuration> |
| 735 | <filesets> |
| 736 | <!-- tosca files --> |
| 737 | <fileset> |
| 738 | <directory>${project.parent.basedir}/asdctool/tosca</directory> |
| 739 | <followSymlinks>false</followSymlinks> |
| 740 | </fileset> |
| 741 | </filesets> |
| 742 | </configuration> |
| 743 | </execution> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 744 | </executions> |
| 745 | </plugin> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 746 | <plugin> |
Michael Lando | dc856bb | 2018-08-13 13:27:52 +0300 | [diff] [blame] | 747 | <groupId>org.apache.maven.plugins</groupId> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 748 | <artifactId>maven-resources-plugin</artifactId> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 749 | <executions> |
| 750 | <execution> |
| 751 | <id>copy-static-configuration-files</id> |
| 752 | <phase>verify</phase> |
| 753 | <goals> |
| 754 | <goal>copy-resources</goal> |
| 755 | </goals> |
| 756 | <configuration> |
Yuli Shlosberg | af70a20 | 2018-09-25 17:16:48 +0300 | [diff] [blame] | 757 | <outputDirectory> |
| 758 | ${project.parent.basedir}/catalog-be/sdc-backend/chef-repo/cookbooks/sdc-catalog-be/files/default |
| 759 | </outputDirectory> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 760 | <resources> |
| 761 | <resource> |
Yuli Shlosberg | af70a20 | 2018-09-25 17:16:48 +0300 | [diff] [blame] | 762 | <directory>${project.parent.basedir}/catalog-be/src/main/resources/config |
| 763 | </directory> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 764 | <includes> |
| 765 | <include>Artifact-Generator.properties</include> |
| 766 | <include>error-configuration.yaml</include> |
| 767 | <include>ecomp-error-configuration.yaml</include> |
| 768 | <include>logback.xml</include> |
| 769 | </includes> |
| 770 | </resource> |
| 771 | </resources> |
| 772 | </configuration> |
| 773 | </execution> |
| 774 | <execution> |
| 775 | <id>copy-tosca-folder</id> |
| 776 | <!-- here the phase you need --> |
| 777 | <phase>install</phase> |
| 778 | <goals> |
| 779 | <goal>copy-resources</goal> |
| 780 | </goals> |
| 781 | <configuration> |
| 782 | <outputDirectory>${project.parent.basedir}/asdctool/tosca</outputDirectory> |
| 783 | <resources> |
| 784 | <resource> |
Yuli Shlosberg | af70a20 | 2018-09-25 17:16:48 +0300 | [diff] [blame] | 785 | <directory>${project.parent.basedir}/catalog-be/src/main/resources/import/tosca |
| 786 | </directory> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 787 | <filtering>true</filtering> |
| 788 | </resource> |
| 789 | </resources> |
| 790 | </configuration> |
| 791 | </execution> |
| 792 | </executions> |
| 793 | </plugin> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 794 | </plugins> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 795 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 796 | <pluginManagement> |
| 797 | <plugins> |
| 798 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 799 | only. It has no influence on the Maven build itself. --> |
| 800 | <plugin> |
| 801 | <groupId>org.eclipse.m2e</groupId> |
| 802 | <artifactId>lifecycle-mapping</artifactId> |
| 803 | <version>1.0.0</version> |
| 804 | <configuration> |
| 805 | <lifecycleMappingMetadata> |
| 806 | <pluginExecutions> |
| 807 | <pluginExecution> |
| 808 | <pluginExecutionFilter> |
| 809 | <groupId>com.googlecode.maven-download-plugin</groupId> |
| 810 | <artifactId>download-maven-plugin</artifactId> |
| 811 | <versionRange>[1.2.1,)</versionRange> |
| 812 | <goals> |
| 813 | <goal>wget</goal> |
| 814 | </goals> |
| 815 | </pluginExecutionFilter> |
| 816 | <action> |
| 817 | <ignore></ignore> |
| 818 | </action> |
| 819 | </pluginExecution> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 820 | |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 821 | <pluginExecution> |
| 822 | <pluginExecutionFilter> |
| 823 | <groupId>com.jcabi</groupId> |
| 824 | <artifactId>jcabi-maven-plugin</artifactId> |
| 825 | <versionRange>[0.0,)</versionRange> |
| 826 | <goals> |
| 827 | <goal>ajc</goal> |
| 828 | </goals> |
| 829 | </pluginExecutionFilter> |
| 830 | <action> |
| 831 | <execute/> |
| 832 | </action> |
| 833 | </pluginExecution> |
| 834 | |
| 835 | </pluginExecutions> |
| 836 | </lifecycleMappingMetadata> |
| 837 | </configuration> |
| 838 | </plugin> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 839 | </plugins> |
| 840 | </pluginManagement> |
| 841 | <!-- Swagger Plugins End --> |
| 842 | </build> |
| 843 | |
| 844 | <profiles> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 845 | <profile> |
| 846 | <id>docker-staging</id> |
| 847 | <properties> |
| 848 | <docker.tag>${project.version}-STAGING-${maven.build.timestamp}</docker.tag> |
| 849 | <docker.latest.tag>${project.version}-STAGING-latest</docker.latest.tag> |
| 850 | </properties> |
| 851 | </profile> |
| 852 | |
| 853 | <profile> |
| 854 | <id>docker</id> |
| 855 | <activation> |
| 856 | <activeByDefault>false</activeByDefault> |
| 857 | </activation> |
| 858 | <build> |
| 859 | <plugins> |
| 860 | <plugin> |
Michael Lando | dc856bb | 2018-08-13 13:27:52 +0300 | [diff] [blame] | 861 | <groupId>org.apache.maven.plugins</groupId> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 862 | <artifactId>maven-resources-plugin</artifactId> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 863 | <executions> |
| 864 | <execution> |
| 865 | <id>copy-resources-apidocs</id> |
| 866 | <phase>verify</phase> |
| 867 | <goals> |
| 868 | <goal>copy-resources</goal> |
| 869 | </goals> |
| 870 | <configuration> |
| 871 | <outputDirectory>${basedir}/sdc-backend</outputDirectory> |
| 872 | <resources> |
| 873 | <resource> |
| 874 | <directory> |
Gautam Shah | 09a41f5 | 2018-04-11 19:55:29 +0530 | [diff] [blame] | 875 | ${project.parent.basedir}/openecomp-be/tools/swagger-ui/target/api-docs |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 876 | </directory> |
| 877 | <includes> |
| 878 | <include>api-docs.war</include> |
| 879 | </includes> |
| 880 | </resource> |
| 881 | </resources> |
| 882 | </configuration> |
| 883 | </execution> |
| 884 | |
| 885 | <execution> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 886 | <id>copy-resources-be</id> |
| 887 | <phase>verify</phase> |
| 888 | <goals> |
| 889 | <goal>copy-resources</goal> |
| 890 | </goals> |
| 891 | <configuration> |
| 892 | <outputDirectory>${basedir}/sdc-backend</outputDirectory> |
| 893 | <resources> |
| 894 | <resource> |
| 895 | <directory>${project.parent.basedir}/catalog-be/target</directory> |
| 896 | <includes> |
| 897 | <include>catalog-be-${project.version}.war</include> |
| 898 | </includes> |
| 899 | </resource> |
| 900 | <resource> |
| 901 | <directory> |
| 902 | ${project.parent.basedir}/openecomp-be/api/openecomp-sdc-rest-webapp/onboarding-rest-war/target |
| 903 | </directory> |
| 904 | <includes> |
| 905 | <include>onboarding-be-${project.version}.war</include> |
| 906 | </includes> |
| 907 | </resource> |
| 908 | </resources> |
| 909 | </configuration> |
| 910 | </execution> |
| 911 | <execution> |
| 912 | <id>copy-normatives</id> |
| 913 | <phase>verify</phase> |
| 914 | <goals> |
| 915 | <goal>copy-resources</goal> |
| 916 | </goals> |
| 917 | <configuration> |
Yuli Shlosberg | af70a20 | 2018-09-25 17:16:48 +0300 | [diff] [blame] | 918 | <outputDirectory> |
| 919 | sdc-backend-init/chef-repo/cookbooks/sdc-catalog-be-setup/files/default |
| 920 | </outputDirectory> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 921 | <resources> |
| 922 | <resource> |
| 923 | <directory>${project.parent.basedir}/catalog-be/target</directory> |
| 924 | <includes> |
| 925 | <include>normatives.tar.gz</include> |
| 926 | </includes> |
| 927 | </resource> |
| 928 | </resources> |
| 929 | </configuration> |
| 930 | </execution> |
| 931 | </executions> |
| 932 | </plugin> |
| 933 | <plugin> |
| 934 | <groupId>io.fabric8</groupId> |
| 935 | <artifactId>docker-maven-plugin</artifactId> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 936 | <configuration> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 937 | <apiVersion>1.23</apiVersion> |
| 938 | <registry>nexus3.onap.org:10001</registry> |
| 939 | <authConfig> |
| 940 | <pull> |
| 941 | <username>docker</username> |
| 942 | <password>docker</password> |
| 943 | </pull> |
| 944 | </authConfig> |
| 945 | <images> |
| 946 | |
| 947 | <!-- Build backend image --> |
| 948 | <image> |
| 949 | <name>onap/sdc-backend</name> |
| 950 | <alias>sdc-backend</alias> |
| 951 | <build> |
| 952 | <cleanup>try</cleanup> |
| 953 | <dockerFileDir>${project.basedir}/sdc-backend</dockerFileDir> |
| 954 | <tags> |
| 955 | <tag>${docker.tag}</tag> |
Yuli Shlosberg | af70a20 | 2018-09-25 17:16:48 +0300 | [diff] [blame] | 956 | <tag> |
| 957 | ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest |
| 958 | </tag> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 959 | </tags> |
| 960 | </build> |
| 961 | </image> |
| 962 | <!-- Build backend-init image --> |
| 963 | <image> |
| 964 | <name>onap/sdc-backend-init</name> |
| 965 | <alias>sdc-backend-init</alias> |
| 966 | <build> |
| 967 | <cleanup>try</cleanup> |
| 968 | <dockerFileDir>${project.basedir}/sdc-backend-init</dockerFileDir> |
| 969 | <tags> |
| 970 | <tag>${docker.tag}</tag> |
Yuli Shlosberg | af70a20 | 2018-09-25 17:16:48 +0300 | [diff] [blame] | 971 | <tag> |
| 972 | ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}-STAGING-latest |
| 973 | </tag> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 974 | </tags> |
| 975 | </build> |
| 976 | </image> |
| 977 | </images> |
| 978 | </configuration> |
| 979 | <executions> |
| 980 | <execution> |
| 981 | <id>clean-images</id> |
| 982 | <phase>pre-clean</phase> |
| 983 | <goals> |
| 984 | <goal>remove</goal> |
| 985 | </goals> |
| 986 | <configuration> |
| 987 | <removeAll>true</removeAll> |
| 988 | <image>onap/sdc-backend,onap/sdc-backend-init</image> |
| 989 | </configuration> |
| 990 | </execution> |
| 991 | |
| 992 | <execution> |
| 993 | <id>generate-images</id> |
| 994 | <phase>install</phase> |
| 995 | <goals> |
| 996 | <goal>build</goal> |
| 997 | </goals> |
| 998 | </execution> |
| 999 | |
| 1000 | <execution> |
| 1001 | <id>push-images</id> |
| 1002 | <phase>deploy</phase> |
| 1003 | <goals> |
| 1004 | <goal>push</goal> |
| 1005 | </goals> |
| 1006 | <configuration> |
| 1007 | <image>onap/sdc-backend,onap/sdc-backend-init</image> |
| 1008 | </configuration> |
| 1009 | </execution> |
| 1010 | </executions> |
| 1011 | </plugin> |
| 1012 | </plugins> |
| 1013 | </build> |
| 1014 | </profile> |
Yuli Shlosberg | 958c32d | 2018-02-15 12:04:46 +0200 | [diff] [blame] | 1015 | </profiles> |
dekstroza | 37843cb | 2018-05-18 14:42:24 +0100 | [diff] [blame] | 1016 | </project> |