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