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