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 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 9 | <parent> |
| 10 | <groupId>org.openecomp.sdc</groupId> |
| 11 | <artifactId>sdc-main</artifactId> |
Michael Lando | 0ad3c80 | 2017-09-19 16:32:59 +0300 | [diff] [blame] | 12 | <version>1.2.0-SNAPSHOT</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 13 | </parent> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 14 | |
Tal Gitelman | 51d50f0 | 2017-12-10 18:55:03 +0200 | [diff] [blame] | 15 | <properties> |
| 16 | <sonar.skip>true</sonar.skip> |
| 17 | </properties> |
Michael Lando | 2e0ef97 | 2017-02-28 01:44:21 +0200 | [diff] [blame] | 18 | |
Tal Gitelman | 51d50f0 | 2017-12-10 18:55:03 +0200 | [diff] [blame] | 19 | <dependencies> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 20 | <!-- Common of SDC --> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 21 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 22 | <groupId>org.openecomp.sdc</groupId> |
| 23 | <artifactId>common-app-api</artifactId> |
| 24 | <version>${project.version}</version> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 25 | <scope>provided</scope> |
| 26 | </dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 27 | |
Michael Lando | 0de99c2 | 2017-02-28 10:54:57 +0200 | [diff] [blame] | 28 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 29 | <groupId>org.openecomp.sdc.be</groupId> |
| 30 | <artifactId>common-be</artifactId> |
| 31 | <version>${project.version}</version> |
Michael Lando | 0de99c2 | 2017-02-28 10:54:57 +0200 | [diff] [blame] | 32 | <scope>provided</scope> |
| 33 | </dependency> |
| 34 | |
Michael Lando | 2e0ef97 | 2017-02-28 01:44:21 +0200 | [diff] [blame] | 35 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 36 | <groupId>ch.qos.logback</groupId> |
| 37 | <artifactId>logback-classic</artifactId> |
| 38 | <version>${logback.version}</version> |
Michael Lando | 2e0ef97 | 2017-02-28 01:44:21 +0200 | [diff] [blame] | 39 | <scope>provided</scope> |
| 40 | </dependency> |
| 41 | |
| 42 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 43 | <groupId>ch.qos.logback</groupId> |
| 44 | <artifactId>logback-core</artifactId> |
| 45 | <version>${logback.version}</version> |
| 46 | <scope>provided</scope> |
| 47 | </dependency> |
| 48 | |
| 49 | <!-- catalog dao --> |
| 50 | <dependency> |
| 51 | <groupId>org.openecomp.sdc.be</groupId> |
| 52 | <artifactId>catalog-dao</artifactId> |
| 53 | <version>${project.version}</version> |
Michael Lando | 2e0ef97 | 2017-02-28 01:44:21 +0200 | [diff] [blame] | 54 | <scope>provided</scope> |
| 55 | </dependency> |
| 56 | |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 57 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 58 | <groupId>com.google.guava</groupId> |
| 59 | <artifactId>guava</artifactId> |
| 60 | <version>${guava.version}</version><!--$NO-MVN-MAN-VER$ --> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 61 | <scope>provided</scope> |
| 62 | </dependency> |
| 63 | |
| 64 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 65 | <groupId>org.functionaljava</groupId> |
| 66 | <artifactId>functionaljava</artifactId> |
| 67 | <version>${functionaljava.version}</version> |
| 68 | <scope>provided</scope> |
| 69 | </dependency> |
| 70 | |
| 71 | <!-- spring --> |
| 72 | <dependency> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 73 | <groupId>org.springframework</groupId> |
| 74 | <artifactId>spring-beans</artifactId> |
| 75 | <version>${spring.version}</version> |
| 76 | <scope>provided</scope> |
| 77 | </dependency> |
| 78 | |
| 79 | <dependency> |
| 80 | <groupId>org.springframework</groupId> |
| 81 | <artifactId>spring-context</artifactId> |
| 82 | <version>${spring.version}</version> |
| 83 | <scope>provided</scope> |
| 84 | </dependency> |
| 85 | |
| 86 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 87 | <groupId>javax.validation</groupId> |
| 88 | <artifactId>validation-api</artifactId> |
| 89 | <version>1.1.0.Final</version> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 90 | </dependency> |
| 91 | |
| 92 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 93 | <groupId>org.hibernate</groupId> |
| 94 | <artifactId>hibernate-validator</artifactId> |
| 95 | <version>5.0.1.Final</version> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 96 | </dependency> |
| 97 | |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 98 | <!-- Gson --> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 99 | <dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 100 | <groupId>com.google.code.gson</groupId> |
| 101 | <artifactId>gson</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 102 | <version>${gson.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 103 | <scope>provided</scope> |
| 104 | </dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 105 | |
| 106 | <!-- TITAN --> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 107 | <dependency> |
| 108 | <groupId>com.thinkaurelius.titan</groupId> |
| 109 | <artifactId>titan-core</artifactId> |
| 110 | <version>${titan.version}</version> |
| 111 | <scope>provided</scope> |
| 112 | <exclusions> |
| 113 | <exclusion> |
| 114 | <groupId>org.json</groupId> |
| 115 | <artifactId>json</artifactId> |
| 116 | </exclusion> |
| 117 | <exclusion> |
| 118 | <artifactId>slf4j-log4j12</artifactId> |
| 119 | <groupId>org.slf4j</groupId> |
| 120 | </exclusion> |
| 121 | </exclusions> |
| 122 | </dependency> |
| 123 | |
| 124 | <dependency> |
Idan Amit | 39987c8 | 2017-09-13 13:51:41 +0300 | [diff] [blame] | 125 | <groupId>org.openecomp.sdc.sdc-titan-cassandra</groupId> |
| 126 | <artifactId>sdc-titan-cassandra</artifactId> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 127 | <version>${titan.version}</version> |
| 128 | <scope>provided</scope> |
| 129 | <exclusions> |
| 130 | <exclusion> |
| 131 | <artifactId>slf4j-log4j12</artifactId> |
| 132 | <groupId>org.slf4j</groupId> |
| 133 | </exclusion> |
| 134 | </exclusions> |
| 135 | </dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 136 | <!-- TITAN END --> |
| 137 | |
| 138 | <dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 139 | <groupId>org.apache.commons</groupId> |
| 140 | <artifactId>commons-lang3</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 141 | <version>${lang3.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 142 | <scope>provided</scope> |
| 143 | </dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 144 | |
| 145 | <!-- http client --> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 146 | <dependency> |
| 147 | <groupId>org.apache.httpcomponents</groupId> |
| 148 | <artifactId>httpclient</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 149 | <version>${httpclient.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 150 | <scope>provided</scope> |
| 151 | </dependency> |
| 152 | |
| 153 | <dependency> |
| 154 | <groupId>org.apache.httpcomponents</groupId> |
| 155 | <artifactId>httpcore</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 156 | <version>${httpcore.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 157 | <scope>provided</scope> |
| 158 | </dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 159 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 160 | <!-- CASSANDRA --> |
| 161 | <dependency> |
| 162 | <groupId>com.datastax.cassandra</groupId> |
| 163 | <artifactId>cassandra-driver-core</artifactId> |
| 164 | <version>${cassandra.driver.version}</version> |
| 165 | <scope>provided</scope> |
| 166 | </dependency> |
| 167 | <dependency> |
| 168 | <groupId>com.datastax.cassandra</groupId> |
| 169 | <artifactId>cassandra-driver-mapping</artifactId> |
| 170 | <version>${cassandra.driver.version}</version> |
| 171 | <scope>provided</scope> |
| 172 | </dependency> |
| 173 | <!-- CASSANDRA END --> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 174 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 175 | <dependency> |
| 176 | <groupId>junit</groupId> |
| 177 | <artifactId>junit</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 178 | <version>${junit.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 179 | <scope>test</scope> |
| 180 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 181 | |
| 182 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 183 | <groupId>org.mockito</groupId> |
Tal Gitelman | 51d50f0 | 2017-12-10 18:55:03 +0200 | [diff] [blame] | 184 | <artifactId>mockito-core</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 185 | <scope>test</scope> |
| 186 | </dependency> |
| 187 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 188 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 189 | <groupId>org.springframework</groupId> |
| 190 | <artifactId>spring-test</artifactId> |
| 191 | <version>${spring.version}</version> |
| 192 | <scope>test</scope> |
| 193 | </dependency> |
| 194 | |
| 195 | <dependency> |
| 196 | <groupId>org.aspectj</groupId> |
| 197 | <artifactId>aspectjrt</artifactId> |
| 198 | <version>${aspectj.version}</version> |
| 199 | <scope>test</scope> |
| 200 | </dependency> |
| 201 | |
| 202 | <dependency> |
| 203 | <groupId>org.aspectj</groupId> |
| 204 | <artifactId>aspectjweaver</artifactId> |
| 205 | <version>${aspectj.version}</version> |
| 206 | <scope>test</scope> |
| 207 | </dependency> |
| 208 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 209 | <dependency> |
| 210 | <groupId>org.springframework</groupId> |
| 211 | <artifactId>spring-web</artifactId> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 212 | <version>${spring.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 213 | <scope>test</scope> |
| 214 | </dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 215 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 216 | <dependency> |
| 217 | <groupId>org.springframework</groupId> |
| 218 | <artifactId>spring-tx</artifactId> |
| 219 | <scope>test</scope> |
| 220 | <version>4.0.7.RELEASE</version> |
| 221 | </dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 222 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 223 | <dependency> |
| 224 | <groupId>org.apache.commons</groupId> |
| 225 | <artifactId>commons-jci-core</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 226 | <version>${commons-jci-core.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 227 | <scope>test</scope> |
| 228 | </dependency> |
Michael Lando | 75aacbb | 2017-07-17 21:12:03 +0300 | [diff] [blame] | 229 | <dependency> |
| 230 | <groupId>org.powermock</groupId> |
| 231 | <artifactId>powermock-module-junit4</artifactId> |
| 232 | <version>1.7.0RC4</version> |
| 233 | <scope>test</scope> |
| 234 | </dependency> |
| 235 | <dependency> |
| 236 | <groupId>org.powermock</groupId> |
| 237 | <artifactId>powermock-api-mockito-common</artifactId> |
| 238 | <version>1.6.5</version> |
| 239 | <scope>test</scope> |
| 240 | </dependency> |
| 241 | </dependencies> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 242 | <build> |
| 243 | <plugins> |
| 244 | <plugin> |
| 245 | <groupId>org.apache.maven.plugins</groupId> |
| 246 | <artifactId>maven-deploy-plugin</artifactId> |
| 247 | <version>2.7</version> |
| 248 | <configuration> |
| 249 | <skip>true</skip> |
| 250 | </configuration> |
| 251 | </plugin> |
| 252 | </plugins> |
| 253 | </build> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 254 | </project> |