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 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
| 5 | <groupId>org.openecomp.sdc.be</groupId> |
| 6 | <artifactId>catalog-dao</artifactId> |
| 7 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 8 | <parent> |
| 9 | <groupId>org.openecomp.sdc</groupId> |
| 10 | <artifactId>sdc-main</artifactId> |
Michael Lando | 0ad3c80 | 2017-09-19 16:32:59 +0300 | [diff] [blame] | 11 | <version>1.2.0-SNAPSHOT</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 12 | </parent> |
| 13 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 14 | <dependencies> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 15 | <!-- Common of SDC --> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 16 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 17 | <groupId>org.openecomp.sdc</groupId> |
| 18 | <artifactId>common-app-api</artifactId> |
| 19 | <version>${project.version}</version> |
| 20 | <scope>provided</scope> |
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 | |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 23 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 24 | <groupId>org.openecomp.sdc.be</groupId> |
| 25 | <artifactId>common-be</artifactId> |
| 26 | <version>${project.version}</version> |
Michael Lando | 2e0ef97 | 2017-02-28 01:44:21 +0200 | [diff] [blame] | 27 | <scope>provided</scope> |
| 28 | </dependency> |
| 29 | |
| 30 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 31 | <groupId>ch.qos.logback</groupId> |
| 32 | <artifactId>logback-classic</artifactId> |
| 33 | <version>${logback.version}</version> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 34 | <scope>provided</scope> |
| 35 | </dependency> |
| 36 | |
| 37 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 38 | <groupId>org.elasticsearch</groupId> |
| 39 | <artifactId>elasticsearch</artifactId> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 40 | <version>${elastic-search.version}</version> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 41 | <scope>provided</scope> |
| 42 | </dependency> |
| 43 | |
| 44 | <dependency> |
| 45 | <groupId>org.elasticsearch.plugin</groupId> |
| 46 | <artifactId>shield</artifactId> |
| 47 | <version>${elastic-search.version}</version> |
| 48 | <scope>provided</scope> |
| 49 | </dependency> |
| 50 | |
| 51 | <!-- SPRING --> |
| 52 | <dependency> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 53 | <groupId>org.springframework</groupId> |
| 54 | <artifactId>spring-context</artifactId> |
| 55 | <version>${spring.version}</version> |
| 56 | <scope>provided</scope> |
| 57 | </dependency> |
| 58 | |
| 59 | <dependency> |
| 60 | <groupId>org.springframework</groupId> |
| 61 | <artifactId>spring-context-support</artifactId> |
| 62 | <version>${spring.version}</version> |
| 63 | <scope>provided</scope> |
| 64 | </dependency> |
| 65 | |
| 66 | <dependency> |
| 67 | <groupId>org.springframework</groupId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 68 | <artifactId>spring-beans</artifactId> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 69 | <version>${spring.version}</version> |
| 70 | <scope>provided</scope> |
| 71 | </dependency> |
| 72 | |
| 73 | <dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 74 | <groupId>org.aspectj</groupId> |
| 75 | <artifactId>aspectjrt</artifactId> |
| 76 | <version>${aspectj.version}</version> |
| 77 | </dependency> |
| 78 | |
| 79 | <dependency> |
| 80 | <groupId>org.aspectj</groupId> |
| 81 | <artifactId>aspectjweaver</artifactId> |
| 82 | <version>${aspectj.version}</version> |
| 83 | </dependency> |
| 84 | |
| 85 | <dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 86 | <groupId>com.fasterxml.jackson.core</groupId> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 87 | <artifactId>jackson-databind</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 88 | <version>${jackson.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 89 | </dependency> |
| 90 | |
| 91 | <dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 92 | <groupId>com.fasterxml.jackson.core</groupId> |
| 93 | <artifactId>jackson-core</artifactId> |
| 94 | <version>${jackson.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 95 | </dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 96 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 97 | <dependency> |
| 98 | <groupId>com.googlecode.json-simple</groupId> |
| 99 | <artifactId>json-simple</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 100 | <version>${json-simple.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 101 | <scope>provided</scope> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 102 | </dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 103 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 104 | <dependency> |
| 105 | <groupId>org.apache.lucene</groupId> |
| 106 | <artifactId>lucene-regex</artifactId> |
| 107 | <version>${regex.version}</version> |
| 108 | </dependency> |
| 109 | |
| 110 | <dependency> |
| 111 | <groupId>org.mockito</groupId> |
Tal Gitelman | 51d50f0 | 2017-12-10 18:55:03 +0200 | [diff] [blame] | 112 | <artifactId>mockito-core</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 113 | <scope>test</scope> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 114 | </dependency> |
| 115 | |
| 116 | <dependency> |
| 117 | <groupId>org.yaml</groupId> |
| 118 | <artifactId>snakeyaml</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 119 | <version>${snakeyaml.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 120 | <scope>provided</scope> |
| 121 | </dependency> |
| 122 | |
| 123 | <dependency> |
| 124 | <groupId>com.google.code.gson</groupId> |
| 125 | <artifactId>gson</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 126 | <version>${gson.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 127 | <scope>provided</scope> |
| 128 | </dependency> |
| 129 | |
| 130 | <dependency> |
| 131 | <groupId>org.functionaljava</groupId> |
| 132 | <artifactId>functionaljava</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 133 | <version>${functionaljava.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 134 | <scope>provided</scope> |
| 135 | </dependency> |
| 136 | |
| 137 | <!-- http client --> |
| 138 | <dependency> |
| 139 | <groupId>org.apache.httpcomponents</groupId> |
| 140 | <artifactId>httpclient</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 141 | <version>${httpclient.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 142 | <scope>provided</scope> |
| 143 | </dependency> |
| 144 | |
| 145 | <dependency> |
| 146 | <groupId>org.apache.httpcomponents</groupId> |
| 147 | <artifactId>httpcore</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 148 | <version>${httpcore.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 149 | <scope>provided</scope> |
| 150 | </dependency> |
| 151 | |
| 152 | <dependency> |
| 153 | <groupId>com.google.guava</groupId> |
| 154 | <artifactId>guava</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 155 | <version>${guava.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 156 | <scope>provided</scope> |
| 157 | </dependency> |
| 158 | |
| 159 | <!-- TEST --> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 160 | <dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 161 | <groupId>org.assertj</groupId> |
| 162 | <artifactId>assertj-core</artifactId> |
| 163 | <scope>test</scope> |
| 164 | </dependency> |
| 165 | |
| 166 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 167 | <groupId>org.springframework</groupId> |
| 168 | <artifactId>spring-test</artifactId> |
| 169 | <version>${spring.version}</version> |
| 170 | <scope>test</scope> |
| 171 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 172 | |
| 173 | <dependency> |
| 174 | <groupId>junit</groupId> |
| 175 | <artifactId>junit</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 176 | <version>${junit.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 177 | <scope>test</scope> |
| 178 | </dependency> |
| 179 | |
| 180 | <dependency> |
| 181 | <groupId>org.apache.commons</groupId> |
| 182 | <artifactId>commons-jci-core</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 183 | <version>${commons-jci-core.version}</version> |
| 184 | <scope>test</scope> |
| 185 | </dependency> |
| 186 | |
| 187 | <dependency> |
| 188 | <groupId>org.springframework</groupId> |
| 189 | <artifactId>spring-expression</artifactId> |
| 190 | <version>${spring.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 191 | <scope>test</scope> |
| 192 | </dependency> |
| 193 | |
| 194 | <dependency> |
| 195 | <groupId>org.springframework</groupId> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 196 | <artifactId>spring-aop</artifactId> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 197 | <version>${spring.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 198 | <scope>test</scope> |
| 199 | </dependency> |
| 200 | |
| 201 | <!-- TITAN --> |
| 202 | <dependency> |
| 203 | <groupId>com.thinkaurelius.titan</groupId> |
| 204 | <artifactId>titan-core</artifactId> |
| 205 | <version>${titan.version}</version> |
| 206 | <scope>provided</scope> |
| 207 | <exclusions> |
| 208 | <exclusion> |
| 209 | <groupId>org.json</groupId> |
| 210 | <artifactId>json</artifactId> |
| 211 | </exclusion> |
| 212 | <exclusion> |
| 213 | <artifactId>slf4j-log4j12</artifactId> |
| 214 | <groupId>org.slf4j</groupId> |
| 215 | </exclusion> |
| 216 | </exclusions> |
| 217 | </dependency> |
| 218 | |
| 219 | <dependency> |
Michael Lando | de67b61 | 2018-03-15 16:53:05 +0200 | [diff] [blame] | 220 | <groupId>org.onap.sdc.sdc-titan-cassandra</groupId> |
Idan Amit | 39987c8 | 2017-09-13 13:51:41 +0300 | [diff] [blame] | 221 | <artifactId>sdc-titan-cassandra</artifactId> |
Michael Lando | de67b61 | 2018-03-15 16:53:05 +0200 | [diff] [blame] | 222 | <version>${sdc.titan.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 223 | <scope>provided</scope> |
| 224 | <exclusions> |
| 225 | <exclusion> |
| 226 | <groupId>org.slf4j</groupId> |
| 227 | <artifactId>slf4j-log4j12</artifactId> |
| 228 | </exclusion> |
| 229 | </exclusions> |
| 230 | </dependency> |
| 231 | |
| 232 | <dependency> |
| 233 | <groupId>org.apache.commons</groupId> |
| 234 | <artifactId>commons-lang3</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 235 | <version>${lang3.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 236 | <scope>provided</scope> |
| 237 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 238 | <!-- TITAN END --> |
| 239 | |
| 240 | <!-- CASSANDRA --> |
| 241 | <dependency> |
| 242 | <groupId>com.datastax.cassandra</groupId> |
| 243 | <artifactId>cassandra-driver-core</artifactId> |
| 244 | <version>${cassandra.driver.version}</version> |
| 245 | <scope>provided</scope> |
| 246 | </dependency> |
| 247 | <dependency> |
| 248 | <groupId>com.datastax.cassandra</groupId> |
| 249 | <artifactId>cassandra-driver-mapping</artifactId> |
| 250 | <version>${cassandra.driver.version}</version> |
| 251 | <scope>provided</scope> |
| 252 | </dependency> |
| 253 | <!-- CASSANDRA END --> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 254 | </dependencies> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 255 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 256 | <build> |
| 257 | |
| 258 | <pluginManagement> |
| 259 | <plugins> |
| 260 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 261 | only. It has no influence on the Maven build itself. --> |
| 262 | <plugin> |
| 263 | <groupId>org.eclipse.m2e</groupId> |
| 264 | <artifactId>lifecycle-mapping</artifactId> |
| 265 | <version>1.0.0</version> |
| 266 | <configuration> |
| 267 | <lifecycleMappingMetadata> |
| 268 | <pluginExecutions> |
| 269 | <pluginExecution> |
| 270 | <pluginExecutionFilter> |
| 271 | <groupId>fr.fastconnect</groupId> |
| 272 | <artifactId>plantuml-maven-plugin</artifactId> |
| 273 | <versionRange>[1.0.0,)</versionRange> |
| 274 | <goals> |
| 275 | <goal>plant</goal> |
| 276 | </goals> |
| 277 | </pluginExecutionFilter> |
| 278 | <action> |
| 279 | <ignore /> |
| 280 | </action> |
| 281 | </pluginExecution> |
| 282 | </pluginExecutions> |
| 283 | </lifecycleMappingMetadata> |
| 284 | </configuration> |
| 285 | </plugin> |
| 286 | <plugin> |
| 287 | <groupId>org.apache.maven.plugins</groupId> |
| 288 | <artifactId>maven-deploy-plugin</artifactId> |
| 289 | <version>2.7</version> |
| 290 | <configuration> |
| 291 | <skip>true</skip> |
| 292 | </configuration> |
| 293 | </plugin> |
| 294 | </plugins> |
| 295 | </pluginManagement> |
| 296 | </build> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 297 | </project> |