Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | |
| 4 | <modelVersion>4.0.0</modelVersion> |
| 5 | |
| 6 | <groupId>org.openecomp.sdc.be</groupId> |
| 7 | <artifactId>catalog-model</artifactId> |
| 8 | |
| 9 | |
| 10 | <parent> |
| 11 | <groupId>org.openecomp.sdc</groupId> |
| 12 | <artifactId>sdc-main</artifactId> |
| 13 | <version>1.0.0-SNAPSHOT</version> |
| 14 | </parent> |
| 15 | |
| 16 | |
| 17 | |
| 18 | <dependencies> |
Michael Lando | 2e0ef97 | 2017-02-28 01:44:21 +0200 | [diff] [blame] | 19 | |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 20 | <dependency> |
| 21 | <groupId>org.testng</groupId> |
| 22 | <artifactId>testng</artifactId> |
| 23 | <version>6.9.10</version> |
| 24 | <scope>test</scope> |
| 25 | </dependency> |
| 26 | |
| 27 | <dependency> |
| 28 | <groupId>org.slf4j</groupId> |
| 29 | <artifactId>slf4j-api</artifactId> |
| 30 | <version>1.7.10</version> |
| 31 | <scope>provided</scope> |
| 32 | </dependency> |
| 33 | |
Michael Lando | 0de99c2 | 2017-02-28 10:54:57 +0200 | [diff] [blame] | 34 | <!-- yaml to object converter --> |
| 35 | <dependency> |
| 36 | <groupId>org.yaml</groupId> |
| 37 | <artifactId>snakeyaml</artifactId> |
| 38 | <version>1.14</version> |
| 39 | <scope>provided</scope> |
| 40 | </dependency> |
| 41 | |
Michael Lando | 2e0ef97 | 2017-02-28 01:44:21 +0200 | [diff] [blame] | 42 | <dependency> |
| 43 | <groupId>commons-logging</groupId> |
| 44 | <artifactId>commons-logging</artifactId> |
| 45 | <version>1.2.1-SNAPSHOT</version> |
| 46 | <scope>provided</scope> |
| 47 | </dependency> |
| 48 | |
| 49 | <dependency> |
| 50 | <groupId>commons-codec</groupId> |
| 51 | <artifactId>commons-codec</artifactId> |
| 52 | <version>2.0-SNAPSHOT</version> |
| 53 | <scope>provided</scope> |
| 54 | </dependency> |
| 55 | |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 56 | <dependency> |
| 57 | <groupId>org.springframework</groupId> |
| 58 | <artifactId>spring-core</artifactId> |
| 59 | <version>${spring.version}</version> |
| 60 | <scope>provided</scope> |
| 61 | </dependency> |
| 62 | |
| 63 | <dependency> |
| 64 | <groupId>org.springframework</groupId> |
| 65 | <artifactId>spring-beans</artifactId> |
| 66 | <version>${spring.version}</version> |
| 67 | <scope>provided</scope> |
| 68 | </dependency> |
| 69 | |
| 70 | <dependency> |
| 71 | <groupId>org.springframework</groupId> |
| 72 | <artifactId>spring-context</artifactId> |
| 73 | <version>${spring.version}</version> |
| 74 | <scope>provided</scope> |
| 75 | </dependency> |
| 76 | |
| 77 | <dependency> |
| 78 | <groupId>org.springframework</groupId> |
| 79 | <artifactId>spring-context-support</artifactId> |
| 80 | <version>${spring.version}</version> |
| 81 | <scope>provided</scope> |
| 82 | </dependency> |
| 83 | |
| 84 | <dependency> |
| 85 | <groupId>org.springframework</groupId> |
| 86 | <artifactId>spring-messaging</artifactId> |
| 87 | <version>${spring.version}</version> |
| 88 | <scope>provided</scope> |
| 89 | </dependency> |
| 90 | |
| 91 | <dependency> |
| 92 | <groupId>org.springframework</groupId> |
| 93 | <artifactId>spring-web</artifactId> |
| 94 | <version>${spring.version}</version> |
| 95 | <scope>provided</scope> |
| 96 | </dependency> |
| 97 | |
| 98 | <dependency> |
| 99 | <groupId>org.springframework</groupId> |
| 100 | <artifactId>spring-webmvc</artifactId> |
| 101 | <version>${spring.version}</version> |
| 102 | <scope>provided</scope> |
| 103 | </dependency> |
| 104 | |
| 105 | <dependency> |
| 106 | <groupId>org.springframework</groupId> |
| 107 | <artifactId>spring-aop</artifactId> |
| 108 | <version>${spring.version}</version> |
| 109 | <scope>provided</scope> |
| 110 | </dependency> |
| 111 | |
| 112 | <dependency> |
| 113 | <groupId>org.springframework</groupId> |
| 114 | <artifactId>spring-aspects</artifactId> |
| 115 | <version>${spring.version}</version> |
| 116 | <scope>provided</scope> |
| 117 | </dependency> |
| 118 | |
| 119 | <dependency> |
| 120 | <groupId>org.springframework</groupId> |
| 121 | <artifactId>spring-test</artifactId> |
| 122 | <version>${spring.version}</version> |
| 123 | <scope>test</scope> |
| 124 | </dependency> |
| 125 | |
| 126 | <dependency> |
| 127 | <groupId>org.springframework</groupId> |
| 128 | <artifactId>spring-expression</artifactId> |
| 129 | <version>${spring.version}</version> |
| 130 | <scope>test</scope> |
| 131 | </dependency> |
| 132 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 133 | |
| 134 | <!-- Common of SD&C --> |
| 135 | <dependency> |
| 136 | <groupId>org.openecomp.sdc</groupId> |
| 137 | <artifactId>common-app-api</artifactId> |
| 138 | <version>${common-app-api.version}</version> |
| 139 | <scope>provided</scope> |
| 140 | </dependency> |
| 141 | <dependency> |
| 142 | <groupId>org.openecomp.sdc.be</groupId> |
| 143 | <artifactId>common-be</artifactId> |
| 144 | <version>${common-be.version}</version> |
| 145 | <scope>provided</scope> |
| 146 | </dependency> |
| 147 | |
| 148 | <dependency> |
| 149 | <groupId>ch.qos.logback</groupId> |
| 150 | <artifactId>logback-classic</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 151 | <version>${logback.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 152 | <scope>provided</scope> |
| 153 | </dependency> |
| 154 | |
| 155 | <dependency> |
| 156 | <groupId>ch.qos.logback</groupId> |
| 157 | <artifactId>logback-core</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 158 | <version>${logback.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 159 | <scope>provided</scope> |
| 160 | </dependency> |
| 161 | |
| 162 | <!-- catalog dao --> |
| 163 | <dependency> |
| 164 | <groupId>org.openecomp.sdc.be</groupId> |
| 165 | <artifactId>catalog-dao</artifactId> |
| 166 | <version>${catalog-dao.version}</version> |
| 167 | <scope>provided</scope> |
| 168 | </dependency> |
| 169 | |
| 170 | <!-- --> |
| 171 | <dependency> |
| 172 | <groupId>com.google.guava</groupId> |
| 173 | <artifactId>guava</artifactId> |
| 174 | <version>${guava.version}</version><!--$NO-MVN-MAN-VER$--> |
| 175 | <scope>provided</scope> |
| 176 | </dependency> |
| 177 | |
| 178 | <dependency> |
| 179 | <groupId>org.functionaljava</groupId> |
| 180 | <artifactId>functionaljava</artifactId> |
| 181 | <scope>provided</scope> |
| 182 | </dependency> |
| 183 | |
| 184 | <dependency> |
| 185 | <groupId>javax.servlet</groupId> |
| 186 | <artifactId>servlet-api</artifactId> |
| 187 | <scope>provided</scope> |
| 188 | </dependency> |
| 189 | |
| 190 | <!-- spring --> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 191 | |
| 192 | <dependency> |
| 193 | <groupId>javax.validation</groupId> |
| 194 | <artifactId>validation-api</artifactId> |
| 195 | <version>1.1.0.Final</version> |
| 196 | </dependency> |
| 197 | |
| 198 | <dependency> |
| 199 | <groupId>org.hibernate</groupId> |
| 200 | <artifactId>hibernate-validator</artifactId> |
| 201 | <version>5.3.4.Final</version> |
| 202 | </dependency> |
| 203 | |
| 204 | <!-- Gson --> |
| 205 | <dependency> |
| 206 | <groupId>com.google.code.gson</groupId> |
| 207 | <artifactId>gson</artifactId> |
Michael Lando | 9744a93 | 2017-02-28 08:22:59 +0200 | [diff] [blame] | 208 | <version>2.3.1</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 209 | <scope>provided</scope> |
| 210 | </dependency> |
| 211 | |
| 212 | <!-- TITAN --> |
| 213 | <dependency> |
| 214 | <groupId>com.thinkaurelius.titan</groupId> |
| 215 | <artifactId>titan-core</artifactId> |
| 216 | <version>${titan.version}</version> |
| 217 | <scope>provided</scope> |
| 218 | <exclusions> |
| 219 | <exclusion> |
| 220 | <groupId>org.json</groupId> |
| 221 | <artifactId>json</artifactId> |
| 222 | </exclusion> |
| 223 | <exclusion> |
| 224 | <artifactId>slf4j-log4j12</artifactId> |
| 225 | <groupId>org.slf4j</groupId> |
| 226 | </exclusion> |
| 227 | </exclusions> |
| 228 | </dependency> |
| 229 | |
| 230 | <dependency> |
| 231 | <groupId>com.thinkaurelius.titan</groupId> |
| 232 | <artifactId>titan-cassandra</artifactId> |
| 233 | <version>${titan.version}</version> |
| 234 | <scope>provided</scope> |
| 235 | <exclusions> |
| 236 | <exclusion> |
| 237 | <artifactId>slf4j-log4j12</artifactId> |
| 238 | <groupId>org.slf4j</groupId> |
| 239 | </exclusion> |
| 240 | </exclusions> |
| 241 | </dependency> |
| 242 | <!-- TITAN END--> |
| 243 | |
| 244 | <dependency> |
| 245 | <groupId>org.apache.commons</groupId> |
| 246 | <artifactId>commons-lang3</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 247 | <version>${lang3.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 248 | <scope>provided</scope> |
| 249 | </dependency> |
| 250 | |
| 251 | <!-- http client --> |
| 252 | <dependency> |
| 253 | <groupId>org.apache.httpcomponents</groupId> |
| 254 | <artifactId>httpclient</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 255 | <version>${httpclient.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 256 | <scope>provided</scope> |
| 257 | </dependency> |
| 258 | |
| 259 | <dependency> |
| 260 | <groupId>org.apache.httpcomponents</groupId> |
| 261 | <artifactId>httpcore</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 262 | <version>${httpcore.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 263 | <scope>provided</scope> |
| 264 | </dependency> |
| 265 | |
| 266 | <!-- CASSANDRA --> |
| 267 | <dependency> |
| 268 | <groupId>com.datastax.cassandra</groupId> |
| 269 | <artifactId>cassandra-driver-core</artifactId> |
| 270 | <version>${cassandra.driver.version}</version> |
| 271 | <scope>provided</scope> |
| 272 | </dependency> |
| 273 | <dependency> |
| 274 | <groupId>com.datastax.cassandra</groupId> |
| 275 | <artifactId>cassandra-driver-mapping</artifactId> |
| 276 | <version>${cassandra.driver.version}</version> |
| 277 | <scope>provided</scope> |
| 278 | </dependency> |
| 279 | <!-- CASSANDRA END --> |
| 280 | |
| 281 | <!-- test --> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 282 | |
| 283 | |
| 284 | <dependency> |
| 285 | <groupId>junit</groupId> |
| 286 | <artifactId>junit</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 287 | <version>4.12</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 288 | <scope>test</scope> |
| 289 | </dependency> |
| 290 | |
| 291 | <dependency> |
| 292 | <groupId>org.mockito</groupId> |
| 293 | <artifactId>mockito-all</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 294 | <version>1.10.19</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 295 | <scope>test</scope> |
| 296 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 297 | |
| 298 | <dependency> |
| 299 | <groupId>org.aspectj</groupId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 300 | <artifactId>aspectjrt</artifactId> |
| 301 | <version>${aspectjrt.version}</version> |
| 302 | <!--<version>1.7.4</version>--> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 303 | <scope>test</scope> |
| 304 | </dependency> |
| 305 | |
| 306 | <dependency> |
| 307 | <groupId>org.aspectj</groupId> |
| 308 | <artifactId>aspectjweaver</artifactId> |
| 309 | <version>1.7.4</version> |
| 310 | <scope>test</scope> |
| 311 | </dependency> |
| 312 | |
| 313 | <dependency> |
| 314 | <groupId>org.springframework</groupId> |
| 315 | <artifactId>spring-web</artifactId> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 316 | <version>${spring.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 317 | <scope>test</scope> |
| 318 | </dependency> |
| 319 | |
| 320 | <dependency> |
| 321 | <groupId>org.springframework</groupId> |
| 322 | <artifactId>spring-tx</artifactId> |
| 323 | <scope>test</scope> |
| 324 | <version>4.0.7.RELEASE</version> |
| 325 | </dependency> |
| 326 | |
| 327 | <dependency> |
| 328 | <groupId>org.apache.commons</groupId> |
| 329 | <artifactId>commons-jci-core</artifactId> |
| 330 | <scope>test</scope> |
| 331 | </dependency> |
| 332 | </dependencies> |
| 333 | <build> |
| 334 | <plugins> |
| 335 | <plugin> |
| 336 | <groupId>org.apache.maven.plugins</groupId> |
| 337 | <artifactId>maven-deploy-plugin</artifactId> |
| 338 | <version>2.7</version> |
| 339 | <configuration> |
| 340 | <skip>true</skip> |
| 341 | </configuration> |
| 342 | </plugin> |
| 343 | </plugins> |
| 344 | </build> |
| 345 | <profiles> |
| 346 | <profile> |
| 347 | <id>Fortify</id> |
| 348 | <activation> |
| 349 | <activeByDefault>false</activeByDefault> |
| 350 | </activation> |
| 351 | |
| 352 | <build> |
| 353 | <plugins> |
| 354 | <plugin> |
| 355 | <groupId>com.fortify.ps.maven.plugin</groupId> |
| 356 | <artifactId>sca-maven-plugin</artifactId> |
| 357 | <version>4.30</version> |
| 358 | <configuration> |
| 359 | <source>1.8</source> |
| 360 | <buildId>${project.parent.artifactId}</buildId> |
| 361 | <toplevelArtifactId>${project.parent.artifactId}</toplevelArtifactId> |
| 362 | </configuration> |
| 363 | </plugin> |
| 364 | </plugins> |
| 365 | </build> |
| 366 | </profile> |
| 367 | </profiles> |
| 368 | </project> |