Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 3 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 4 | <modelVersion>4.0.0</modelVersion> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 5 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 6 | <artifactId>test-apis-ci</artifactId> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 7 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 8 | <parent> |
| 9 | <groupId>org.openecomp.sdc</groupId> |
| 10 | <artifactId>sdc-main</artifactId> |
| 11 | <version>1.2.0-SNAPSHOT</version> |
| 12 | </parent> |
Gitelman, Tal (tg851x) | e482ae4 | 2018-03-11 19:37:06 +0200 | [diff] [blame] | 13 | |
| 14 | <properties> |
| 15 | <sonar.skip>true</sonar.skip> |
| 16 | </properties> |
| 17 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 18 | <dependencies> |
| 19 | <dependency> |
| 20 | <groupId>com.google.guava</groupId> |
| 21 | <artifactId>guava</artifactId> |
| 22 | <version>${guava.version}</version> |
| 23 | <scope>compile</scope> |
| 24 | </dependency> |
Michael Lando | 660b57d | 2017-10-11 09:45:53 +0300 | [diff] [blame] | 25 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 26 | <dependency> |
| 27 | <groupId>junit</groupId> |
| 28 | <artifactId>junit</artifactId> |
| 29 | <version>${junit.version}</version> |
| 30 | <scope>compile</scope> |
| 31 | </dependency> |
| 32 | <!--<dependency> |
| 33 | <groupId>org.hamcrest</groupId> |
| 34 | <artifactId>hamcrest-core</artifactId> |
| 35 | <version>1.3</version> |
| 36 | <scope>test</scope> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.hamcrest</groupId> |
| 40 | <artifactId>hamcrest-library</artifactId> |
| 41 | <version>1.3</version> |
| 42 | <scope>test</scope> |
| 43 | </dependency>--> |
| 44 | <dependency> |
| 45 | <groupId>org.hamcrest</groupId> |
| 46 | <artifactId>hamcrest-all</artifactId> |
| 47 | <version>1.3</version> |
| 48 | <scope>test</scope> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.testng</groupId> |
| 52 | <artifactId>testng</artifactId> |
| 53 | <version>${testng.version}</version> |
| 54 | <scope>compile</scope> |
| 55 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 56 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 57 | <dependency> |
| 58 | <groupId>com.aventstack</groupId> |
| 59 | <artifactId>extentreports</artifactId> |
| 60 | <version>3.0.6</version> |
| 61 | <scope>compile</scope> |
| 62 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 63 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 64 | <dependency> |
| 65 | <groupId>org.mockito</groupId> |
| 66 | <artifactId>mockito-core</artifactId> |
| 67 | <scope>test</scope> |
| 68 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 69 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 70 | <dependency> |
| 71 | <groupId>com.typesafe</groupId> |
| 72 | <artifactId>config</artifactId> |
| 73 | <version>1.0.2</version> |
| 74 | <scope>compile</scope> |
| 75 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 76 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 77 | <dependency> |
| 78 | <groupId>log4j</groupId> |
| 79 | <artifactId>log4j</artifactId> |
| 80 | <version>1.2.17</version> |
| 81 | <scope>compile</scope> |
| 82 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 83 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 84 | <dependency> |
| 85 | <groupId>com.jcraft.jsch</groupId> |
| 86 | <artifactId>com.springsource.com.jcraft.jsch</artifactId> |
| 87 | <version>0.1.41</version> |
| 88 | <scope>compile</scope> |
| 89 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 90 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 91 | <!-- <dependency> |
| 92 | <groupId>org.openecomp.sdc</groupId> |
| 93 | <artifactId>dmaap-publisher</artifactId> |
| 94 | <version>1.0.0</version> |
| 95 | <scope>provided</scope> |
| 96 | </dependency>--> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 97 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 98 | <dependency> |
| 99 | <groupId>org.openecomp.sdc</groupId> |
| 100 | <artifactId>common-app-api</artifactId> |
| 101 | <version>${project.version}</version> |
| 102 | <scope>compile</scope> |
| 103 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 104 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 105 | <dependency> |
| 106 | <groupId>org.openecomp.sdc.be</groupId> |
| 107 | <artifactId>common-be</artifactId> |
| 108 | <version>${project.version}</version> |
| 109 | <scope>compile</scope> |
| 110 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 111 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 112 | <!-- CHECK CATLOG MODEL --> |
| 113 | <dependency> |
| 114 | <groupId>org.openecomp.sdc.be</groupId> |
| 115 | <artifactId>catalog-model</artifactId> |
| 116 | <version>${project.version}</version> |
| 117 | <scope>compile</scope> |
| 118 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 119 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 120 | <!-- catalog dao --> |
| 121 | <dependency> |
| 122 | <groupId>org.openecomp.sdc.be</groupId> |
| 123 | <artifactId>catalog-dao</artifactId> |
| 124 | <version>${project.version}</version> |
| 125 | <scope>compile</scope> |
| 126 | </dependency> |
| 127 | <!-- functional java --> |
| 128 | <dependency> |
| 129 | <groupId>org.functionaljava</groupId> |
| 130 | <artifactId>functionaljava</artifactId> |
| 131 | <version>${functionaljava.version}</version> |
| 132 | <scope>compile</scope> |
| 133 | </dependency> |
| 134 | <!-- CASSANDRA --> |
| 135 | <dependency> |
| 136 | <groupId>com.datastax.cassandra</groupId> |
| 137 | <artifactId>cassandra-driver-core</artifactId> |
| 138 | <version>${cassandra.driver.version}</version> |
| 139 | <scope>compile</scope> |
| 140 | </dependency> |
| 141 | <!-- CASSANDRA END --> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 142 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 143 | <!-- slf4j + logback --> |
| 144 | <dependency> |
| 145 | <groupId>org.slf4j</groupId> |
| 146 | <artifactId>slf4j-api</artifactId> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 147 | <version>${slf4j-api.version}</version> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 148 | <scope>compile</scope> |
| 149 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 150 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 151 | <dependency> |
| 152 | <groupId>ch.qos.logback</groupId> |
| 153 | <artifactId>logback-classic</artifactId> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 154 | <version>${logback.version}</version> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 155 | <scope>compile</scope> |
| 156 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 157 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 158 | <dependency> |
| 159 | <groupId>ch.qos.logback</groupId> |
| 160 | <artifactId>logback-core</artifactId> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 161 | <version>${logback.version}</version> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 162 | <scope>compile</scope> |
| 163 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 164 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 165 | <dependency> |
| 166 | <groupId>com.googlecode.json-simple</groupId> |
| 167 | <artifactId>json-simple</artifactId> |
| 168 | <version>${json-simple.version}</version> |
| 169 | <scope>compile</scope> |
| 170 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 171 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 172 | <!-- File changes listener --> |
| 173 | <dependency> |
| 174 | <groupId>org.apache.commons</groupId> |
| 175 | <artifactId>commons-jci-core</artifactId> |
| 176 | <version>${commons-jci-core.version}</version> |
| 177 | <scope>compile</scope> |
| 178 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 179 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 180 | <dependency> |
| 181 | <groupId>commons-codec</groupId> |
| 182 | <artifactId>commons-codec</artifactId> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 183 | <version>${commons-codec}</version> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 184 | <scope>compile</scope> |
| 185 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 186 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 187 | <!-- Gson --> |
| 188 | <dependency> |
| 189 | <groupId>com.google.code.gson</groupId> |
| 190 | <artifactId>gson</artifactId> |
| 191 | <version>${gson.version}</version> |
| 192 | <scope>compile</scope> |
| 193 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 194 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 195 | <!-- Snake Yaml --> |
| 196 | <dependency> |
| 197 | <groupId>org.yaml</groupId> |
| 198 | <artifactId>snakeyaml</artifactId> |
| 199 | <version>${snakeyaml.version}</version> |
| 200 | <scope>compile</scope> |
| 201 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 202 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 203 | <!-- http client --> |
| 204 | <dependency> |
| 205 | <groupId>org.apache.httpcomponents</groupId> |
| 206 | <artifactId>httpclient</artifactId> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 207 | <version>${httpclient.version}</version> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 208 | <scope>compile</scope> |
| 209 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 210 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 211 | <dependency> |
| 212 | <groupId>org.apache.httpcomponents</groupId> |
| 213 | <artifactId>httpmime</artifactId> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 214 | <version>${httpclient.version}</version> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 215 | <scope>compile</scope> |
| 216 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 217 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 218 | <dependency> |
| 219 | <groupId>commons-io</groupId> |
| 220 | <artifactId>commons-io</artifactId> |
| 221 | <version>2.5</version> |
| 222 | <scope>compile</scope> |
| 223 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 224 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 225 | <dependency> |
| 226 | <groupId>commons-logging</groupId> |
| 227 | <artifactId>commons-logging</artifactId> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 228 | <version>${commons-logging}</version> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 229 | <scope>compile</scope> |
| 230 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 231 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 232 | <!-- http core --> |
| 233 | <dependency> |
| 234 | <groupId>org.apache.httpcomponents</groupId> |
| 235 | <artifactId>httpcore</artifactId> |
| 236 | <version>${httpcore.version}</version> |
| 237 | <scope>compile</scope> |
| 238 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 239 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 240 | <!-- TITAN --> |
| 241 | <dependency> |
| 242 | <groupId>com.thinkaurelius.titan</groupId> |
| 243 | <artifactId>titan-core</artifactId> |
| 244 | <version>${titan.version}</version> |
| 245 | <scope>compile</scope> |
| 246 | <exclusions> |
| 247 | <exclusion> |
| 248 | <artifactId>slf4j-log4j12</artifactId> |
| 249 | <groupId>org.slf4j</groupId> |
| 250 | </exclusion> |
| 251 | </exclusions> |
| 252 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 253 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 254 | <dependency> |
| 255 | <groupId>com.thinkaurelius.titan</groupId> |
| 256 | <artifactId>titan-cassandra</artifactId> |
| 257 | <version>${titan.version}</version> |
| 258 | <scope>compile</scope> |
| 259 | <exclusions> |
| 260 | <exclusion> |
| 261 | <artifactId>slf4j-log4j12</artifactId> |
| 262 | <groupId>org.slf4j</groupId> |
| 263 | </exclusion> |
| 264 | </exclusions> |
| 265 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 266 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 267 | <dependency> |
| 268 | <groupId>org.codehaus.jackson</groupId> |
| 269 | <artifactId>jackson-mapper-asl</artifactId> |
| 270 | <version>1.9.2</version> |
| 271 | <scope>compile</scope> |
| 272 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 273 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 274 | <dependency> |
| 275 | <groupId>com.fasterxml.jackson.core</groupId> |
| 276 | <artifactId>jackson-databind</artifactId> |
Gitelman, Tal (tg851x) | 483c3d9 | 2018-03-12 18:41:15 +0200 | [diff] [blame] | 277 | <version>${jackson.version}</version> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 278 | <scope>compile</scope> |
| 279 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 280 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 281 | <dependency> |
| 282 | <groupId>com.fasterxml.jackson.core</groupId> |
| 283 | <artifactId>jackson-core</artifactId> |
Gitelman, Tal (tg851x) | 483c3d9 | 2018-03-12 18:41:15 +0200 | [diff] [blame] | 284 | <version>${jackson.version}</version> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 285 | <scope>compile</scope> |
| 286 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 287 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 288 | <dependency> |
| 289 | <groupId>org.openecomp.ecompsdkos</groupId> |
| 290 | <artifactId>epsdk-fw</artifactId> |
| 291 | <version>${ecomp.version}</version> |
| 292 | <scope>compile</scope> |
| 293 | <exclusions> |
| 294 | <exclusion> |
| 295 | <artifactId>slf4j-log4j12</artifactId> |
| 296 | <groupId>org.slf4j</groupId> |
| 297 | </exclusion> |
| 298 | </exclusions> |
| 299 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 300 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 301 | <dependency> |
| 302 | <groupId>org.json</groupId> |
| 303 | <artifactId>json</artifactId> |
| 304 | <version>20131018</version> |
| 305 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 306 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 307 | <dependency> |
| 308 | <groupId>org.openecomp.sdc.sdc-tosca</groupId> |
| 309 | <artifactId>sdc-tosca</artifactId> |
| 310 | <version>1.2.1-SNAPSHOT</version> |
| 311 | <scope>compile</scope> |
| 312 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 313 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 314 | <dependency> |
| 315 | <groupId>info.cukes</groupId> |
| 316 | <artifactId>cucumber-junit</artifactId> |
| 317 | <version>1.2.4</version> |
| 318 | <scope>test</scope> |
| 319 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 320 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 321 | <dependency> |
| 322 | <groupId>info.cukes</groupId> |
| 323 | <artifactId>cucumber-core</artifactId> |
| 324 | <version>1.2.4</version> |
| 325 | <scope>test</scope> |
| 326 | </dependency> |
| 327 | |
| 328 | <dependency> |
| 329 | <groupId>info.cukes</groupId> |
| 330 | <artifactId>gherkin</artifactId> |
| 331 | <version>2.12.2</version> |
| 332 | </dependency> |
| 333 | <dependency> |
| 334 | <groupId>info.cukes</groupId> |
| 335 | <artifactId>cucumber-java</artifactId> |
| 336 | <version>1.2.5</version> |
| 337 | <scope>test</scope> |
| 338 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 339 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 340 | <dependency> |
| 341 | <groupId>info.cukes</groupId> |
| 342 | <artifactId>cucumber-jvm-deps</artifactId> |
| 343 | <version>1.0.5</version> |
| 344 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 345 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 346 | <dependency> |
| 347 | <groupId>org.mock-server</groupId> |
| 348 | <artifactId>mockserver-netty</artifactId> |
| 349 | <version>3.10.4</version> |
| 350 | <scope>test</scope> |
| 351 | </dependency> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 352 | |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 353 | <dependency> |
| 354 | <groupId>org.openecomp.sdc.sdc-distribution-client</groupId> |
| 355 | <artifactId>sdc-distribution-client</artifactId> |
| 356 | <version>1.2.2 </version> |
| 357 | <scope>test</scope> |
| 358 | </dependency> |
| 359 | |
| 360 | <!-- With TestNG --> |
| 361 | <dependency> |
| 362 | <groupId>info.cukes</groupId> |
| 363 | <artifactId>cucumber-testng</artifactId> |
| 364 | <version>1.2.5</version> |
| 365 | </dependency> |
| 366 | |
| 367 | <!-- spring --> |
| 368 | <dependency> |
| 369 | <groupId>org.springframework</groupId> |
| 370 | <artifactId>spring-context</artifactId> |
| 371 | <version>${spring.version}</version> |
| 372 | <scope>compile</scope> |
| 373 | </dependency> |
| 374 | |
| 375 | <!-- CASSANDRA --> |
| 376 | <dependency> |
| 377 | <groupId>com.datastax.cassandra</groupId> |
| 378 | <artifactId>cassandra-driver-mapping</artifactId> |
| 379 | <version>${cassandra.driver.version}</version> |
| 380 | <scope>compile</scope> |
| 381 | </dependency> |
| 382 | |
| 383 | <!-- CASSANDRA END --> |
| 384 | </dependencies> |
| 385 | |
| 386 | <build> |
| 387 | <plugins> |
| 388 | |
| 389 | <!-- ============================================= --> |
| 390 | <!-- Get the next build number --> |
| 391 | <!-- ============================================= --> |
| 392 | <!--<plugin> --> |
| 393 | <!--<groupId>org.codehaus.mojo</groupId> --> |
| 394 | <!--<artifactId>properties-maven-plugin</artifactId> --> |
| 395 | <!--<version>1.0-alpha-1</version> --> |
| 396 | <!--<inherited>false</inherited> --> |
| 397 | |
| 398 | <!--<executions> --> |
| 399 | <!--<execution> --> |
| 400 | <!--<id>tests</id> --> |
| 401 | <!--<phase>initialize</phase> --> |
| 402 | <!--<goals> --> |
| 403 | <!--<goal>read-project-properties</goal> --> |
| 404 | <!--</goals> --> |
| 405 | |
| 406 | <!--<configuration> --> |
| 407 | <!--<files> --> |
| 408 | <!--<file>../target/FullReleaseVersion.properties</file> --> |
| 409 | <!--</files> --> |
| 410 | <!--</configuration> --> |
| 411 | <!--</execution> --> |
| 412 | <!--</executions> --> |
| 413 | <!--</plugin> --> |
| 414 | |
| 415 | <plugin> |
| 416 | <groupId>org.apache.maven.plugins</groupId> |
| 417 | <artifactId>maven-deploy-plugin</artifactId> |
| 418 | <version>2.7</version> |
| 419 | <configuration> |
| 420 | <skip>true</skip> |
| 421 | </configuration> |
| 422 | </plugin> |
| 423 | |
| 424 | <!-- ============================================= --> |
| 425 | <!-- Create the JAR file with its dependencies --> |
| 426 | <!-- ============================================= --> |
| 427 | <plugin> |
| 428 | <groupId>org.apache.maven.plugins</groupId> |
| 429 | <artifactId>maven-assembly-plugin</artifactId> |
| 430 | <executions> |
| 431 | <execution> |
| 432 | <id>create.jar.with.dependencies</id> |
| 433 | <phase>package</phase> |
| 434 | <goals> |
| 435 | <goal>single</goal> |
| 436 | </goals> |
| 437 | <configuration> |
| 438 | <archive> |
| 439 | <manifest> |
| 440 | <mainClass>org.openecomp.sdc.ci.tests.run.StartTest</mainClass> |
| 441 | </manifest> |
| 442 | </archive> |
| 443 | <descriptorRefs> |
| 444 | <descriptorRef>jar-with-dependencies</descriptorRef> |
| 445 | </descriptorRefs> |
| 446 | </configuration> |
| 447 | </execution> |
| 448 | </executions> |
| 449 | </plugin> |
| 450 | </plugins> |
| 451 | </build> |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 452 | |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 453 | |
Michael Lando | b3d4898 | 2017-06-11 14:22:02 +0300 | [diff] [blame] | 454 | </project> |