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