Piotr Darosz | 20da3d0 | 2018-06-15 08:28:00 +0200 | [diff] [blame] | 1 | <!-- |
| 2 | ============LICENSE_START======================================================= |
| 3 | SDC |
| 4 | ================================================================================ |
| 5 | Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. |
| 6 | ================================================================================ |
| 7 | Licensed under the Apache License, Version 2.0 (the "License"); |
| 8 | you may not use this file except in compliance with the License. |
| 9 | You may obtain a copy of the License at |
| 10 | * |
| 11 | http://www.apache.org/licenses/LICENSE-2.0 |
| 12 | * |
| 13 | Unless required by applicable law or agreed to in writing, software |
| 14 | distributed under the License is distributed on an "AS IS" BASIS, |
| 15 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 16 | See the License for the specific language governing permissions and |
| 17 | limitations under the License. |
| 18 | ============LICENSE_END========================================================= |
| 19 | Modifications copyright (c) 2018 Nokia |
| 20 | ================================================================================ |
| 21 | --> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 23 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 24 | <modelVersion>4.0.0</modelVersion> |
| 25 | |
| 26 | <groupId>org.openecomp.sdc.be</groupId> |
| 27 | <artifactId>catalog-dao</artifactId> |
| 28 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 29 | <parent> |
| 30 | <groupId>org.openecomp.sdc</groupId> |
| 31 | <artifactId>sdc-main</artifactId> |
Michael Lando | d8a0dea | 2018-06-02 19:23:27 +0300 | [diff] [blame] | 32 | <version>1.3.0-SNAPSHOT</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 33 | </parent> |
| 34 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 35 | <dependencies> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 36 | <!-- Common of SDC --> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 37 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 38 | <groupId>org.openecomp.sdc</groupId> |
| 39 | <artifactId>common-app-api</artifactId> |
| 40 | <version>${project.version}</version> |
| 41 | <scope>provided</scope> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 42 | </dependency> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 43 | |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 44 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 45 | <groupId>org.openecomp.sdc.be</groupId> |
| 46 | <artifactId>common-be</artifactId> |
| 47 | <version>${project.version}</version> |
Michael Lando | 2e0ef97 | 2017-02-28 01:44:21 +0200 | [diff] [blame] | 48 | <scope>provided</scope> |
| 49 | </dependency> |
| 50 | |
| 51 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 52 | <groupId>ch.qos.logback</groupId> |
| 53 | <artifactId>logback-classic</artifactId> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 54 | <version>${logback.version}</version> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 55 | <scope>provided</scope> |
| 56 | </dependency> |
| 57 | |
| 58 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 59 | <groupId>org.elasticsearch</groupId> |
| 60 | <artifactId>elasticsearch</artifactId> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 61 | <version>${elastic-search.version}</version> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 62 | <scope>provided</scope> |
| 63 | </dependency> |
| 64 | |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 65 | <!-- SPRING --> |
| 66 | <dependency> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 67 | <groupId>org.springframework</groupId> |
| 68 | <artifactId>spring-context</artifactId> |
| 69 | <version>${spring.version}</version> |
| 70 | <scope>provided</scope> |
| 71 | </dependency> |
| 72 | |
| 73 | <dependency> |
| 74 | <groupId>org.springframework</groupId> |
| 75 | <artifactId>spring-context-support</artifactId> |
| 76 | <version>${spring.version}</version> |
| 77 | <scope>provided</scope> |
| 78 | </dependency> |
| 79 | |
| 80 | <dependency> |
| 81 | <groupId>org.springframework</groupId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 82 | <artifactId>spring-beans</artifactId> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 83 | <version>${spring.version}</version> |
| 84 | <scope>provided</scope> |
| 85 | </dependency> |
| 86 | |
| 87 | <dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 88 | <groupId>org.aspectj</groupId> |
| 89 | <artifactId>aspectjrt</artifactId> |
| 90 | <version>${aspectj.version}</version> |
| 91 | </dependency> |
| 92 | |
| 93 | <dependency> |
| 94 | <groupId>org.aspectj</groupId> |
| 95 | <artifactId>aspectjweaver</artifactId> |
| 96 | <version>${aspectj.version}</version> |
| 97 | </dependency> |
| 98 | |
| 99 | <dependency> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 100 | <groupId>org.springframework</groupId> |
| 101 | <artifactId>spring-aop</artifactId> |
| 102 | <version>${spring.version}</version> |
| 103 | </dependency> |
| 104 | |
| 105 | <dependency> |
| 106 | <groupId>org.springframework</groupId> |
| 107 | <artifactId>spring-tx</artifactId> |
| 108 | <version>${spring.version}</version> |
| 109 | </dependency> |
| 110 | |
| 111 | <dependency> |
| 112 | <groupId>com.fasterxml.jackson.core</groupId> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 113 | <artifactId>jackson-databind</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 114 | <version>${jackson.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 115 | </dependency> |
| 116 | |
| 117 | <dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 118 | <groupId>com.fasterxml.jackson.core</groupId> |
| 119 | <artifactId>jackson-core</artifactId> |
| 120 | <version>${jackson.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 121 | </dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 122 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 123 | <dependency> |
| 124 | <groupId>com.googlecode.json-simple</groupId> |
| 125 | <artifactId>json-simple</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 126 | <version>${json-simple.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 127 | <scope>provided</scope> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 128 | </dependency> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 129 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 130 | <dependency> |
| 131 | <groupId>org.apache.lucene</groupId> |
| 132 | <artifactId>lucene-regex</artifactId> |
| 133 | <version>${regex.version}</version> |
| 134 | </dependency> |
| 135 | |
| 136 | <dependency> |
| 137 | <groupId>org.mockito</groupId> |
Tal Gitelman | 51d50f0 | 2017-12-10 18:55:03 +0200 | [diff] [blame] | 138 | <artifactId>mockito-core</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 139 | <scope>test</scope> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 140 | </dependency> |
| 141 | |
| 142 | <dependency> |
Tal Gitelman | 83b2fd7 | 2018-05-27 17:49:33 +0300 | [diff] [blame] | 143 | <groupId>org.jmockit</groupId> |
| 144 | <artifactId>jmockit</artifactId> |
Tal Gitelman | 83b2fd7 | 2018-05-27 17:49:33 +0300 | [diff] [blame] | 145 | <scope>test</scope> |
| 146 | </dependency> |
| 147 | |
| 148 | <dependency> |
Piotr Darosz | 0081451 | 2018-06-18 12:46:35 +0200 | [diff] [blame] | 149 | <groupId>com.google.code.bean-matchers</groupId> |
| 150 | <artifactId>bean-matchers</artifactId> |
| 151 | <version>${bean-matchers.version}</version> |
| 152 | <scope>test</scope> |
| 153 | </dependency> |
| 154 | |
| 155 | <dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 156 | <groupId>org.yaml</groupId> |
| 157 | <artifactId>snakeyaml</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 158 | <version>${snakeyaml.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.code.gson</groupId> |
| 164 | <artifactId>gson</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 165 | <version>${gson.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 166 | <scope>provided</scope> |
| 167 | </dependency> |
| 168 | |
| 169 | <dependency> |
| 170 | <groupId>org.functionaljava</groupId> |
| 171 | <artifactId>functionaljava</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 172 | <version>${functionaljava.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 173 | <scope>provided</scope> |
| 174 | </dependency> |
| 175 | |
| 176 | <!-- http client --> |
| 177 | <dependency> |
| 178 | <groupId>org.apache.httpcomponents</groupId> |
| 179 | <artifactId>httpclient</artifactId> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 180 | <version>${httpclient.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 181 | <scope>provided</scope> |
| 182 | </dependency> |
| 183 | |
| 184 | <dependency> |
| 185 | <groupId>org.apache.httpcomponents</groupId> |
| 186 | <artifactId>httpcore</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 187 | <version>${httpcore.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 188 | <scope>provided</scope> |
| 189 | </dependency> |
| 190 | |
| 191 | <dependency> |
| 192 | <groupId>com.google.guava</groupId> |
| 193 | <artifactId>guava</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 194 | <version>${guava.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 195 | <scope>provided</scope> |
| 196 | </dependency> |
| 197 | |
| 198 | <!-- TEST --> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 199 | <dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 200 | <groupId>org.assertj</groupId> |
| 201 | <artifactId>assertj-core</artifactId> |
| 202 | <scope>test</scope> |
| 203 | </dependency> |
| 204 | |
| 205 | <dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 206 | <groupId>org.springframework</groupId> |
| 207 | <artifactId>spring-test</artifactId> |
| 208 | <version>${spring.version}</version> |
| 209 | <scope>test</scope> |
| 210 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 211 | |
| 212 | <dependency> |
| 213 | <groupId>junit</groupId> |
| 214 | <artifactId>junit</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 215 | <version>${junit.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 216 | <scope>test</scope> |
| 217 | </dependency> |
| 218 | |
| 219 | <dependency> |
| 220 | <groupId>org.apache.commons</groupId> |
| 221 | <artifactId>commons-jci-core</artifactId> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 222 | <version>${commons-jci-core.version}</version> |
| 223 | <scope>test</scope> |
| 224 | </dependency> |
| 225 | |
| 226 | <dependency> |
| 227 | <groupId>org.springframework</groupId> |
| 228 | <artifactId>spring-expression</artifactId> |
| 229 | <version>${spring.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 230 | <scope>test</scope> |
| 231 | </dependency> |
| 232 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 233 | <!-- TITAN --> |
| 234 | <dependency> |
| 235 | <groupId>com.thinkaurelius.titan</groupId> |
| 236 | <artifactId>titan-core</artifactId> |
| 237 | <version>${titan.version}</version> |
| 238 | <scope>provided</scope> |
| 239 | <exclusions> |
| 240 | <exclusion> |
| 241 | <groupId>org.json</groupId> |
| 242 | <artifactId>json</artifactId> |
| 243 | </exclusion> |
| 244 | <exclusion> |
| 245 | <artifactId>slf4j-log4j12</artifactId> |
| 246 | <groupId>org.slf4j</groupId> |
| 247 | </exclusion> |
Tal Gitelman | 7678396 | 2018-09-06 18:16:24 +0300 | [diff] [blame] | 248 | <exclusion> |
| 249 | <artifactId>commons-collections</artifactId> |
| 250 | <groupId>commons-collections</groupId> |
| 251 | </exclusion> |
Tal Gitelman | a3b79a2 | 2018-09-25 17:22:34 +0300 | [diff] [blame] | 252 | <exclusion> |
| 253 | <artifactId>groovy</artifactId> |
| 254 | <groupId>org.codehaus.groovy</groupId> |
| 255 | </exclusion> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 256 | </exclusions> |
| 257 | </dependency> |
| 258 | |
| 259 | <dependency> |
Michael Lando | de67b61 | 2018-03-15 16:53:05 +0200 | [diff] [blame] | 260 | <groupId>org.onap.sdc.sdc-titan-cassandra</groupId> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 261 | <artifactId>sdc-titan-cassandra</artifactId> |
Michael Lando | de67b61 | 2018-03-15 16:53:05 +0200 | [diff] [blame] | 262 | <version>${sdc.titan.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 263 | <scope>provided</scope> |
| 264 | <exclusions> |
| 265 | <exclusion> |
| 266 | <groupId>org.slf4j</groupId> |
| 267 | <artifactId>slf4j-log4j12</artifactId> |
| 268 | </exclusion> |
| 269 | </exclusions> |
| 270 | </dependency> |
| 271 | |
| 272 | <dependency> |
| 273 | <groupId>org.apache.commons</groupId> |
| 274 | <artifactId>commons-lang3</artifactId> |
Michael Lando | c34b77c | 2017-02-28 19:03:11 +0200 | [diff] [blame] | 275 | <version>${lang3.version}</version> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 276 | <scope>provided</scope> |
| 277 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 278 | <!-- TITAN END --> |
| 279 | |
| 280 | <!-- CASSANDRA --> |
| 281 | <dependency> |
| 282 | <groupId>com.datastax.cassandra</groupId> |
| 283 | <artifactId>cassandra-driver-core</artifactId> |
| 284 | <version>${cassandra.driver.version}</version> |
| 285 | <scope>provided</scope> |
Piotr Darosz | 20da3d0 | 2018-06-15 08:28:00 +0200 | [diff] [blame] | 286 | <exclusions> |
| 287 | <exclusion> |
| 288 | <groupId>io.netty</groupId> |
| 289 | <artifactId>netty-handler</artifactId> |
| 290 | </exclusion> |
| 291 | </exclusions> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 292 | </dependency> |
| 293 | <dependency> |
| 294 | <groupId>com.datastax.cassandra</groupId> |
| 295 | <artifactId>cassandra-driver-mapping</artifactId> |
| 296 | <version>${cassandra.driver.version}</version> |
| 297 | <scope>provided</scope> |
| 298 | </dependency> |
Piotr Darosz | 20da3d0 | 2018-06-15 08:28:00 +0200 | [diff] [blame] | 299 | <dependency> |
| 300 | <groupId>org.cassandraunit</groupId> |
| 301 | <artifactId>cassandra-unit</artifactId> |
| 302 | <version>${cassandra.unit.version}</version> |
| 303 | <scope>test</scope> |
| 304 | <exclusions> |
| 305 | <exclusion> |
| 306 | <groupId>org.apache.cassandra</groupId> |
| 307 | <artifactId>cassandra-all</artifactId> |
| 308 | </exclusion> |
| 309 | </exclusions> |
| 310 | </dependency> |
| 311 | <dependency> |
| 312 | <groupId>org.apache.cassandra</groupId> |
| 313 | <artifactId>cassandra-all</artifactId> |
| 314 | <version>3.11.3</version> |
| 315 | <scope>test</scope> |
| 316 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 317 | <!-- CASSANDRA END --> |
Tal Gitelman | e019937 | 2018-09-18 11:57:53 +0300 | [diff] [blame] | 318 | |
| 319 | <dependency> |
| 320 | <groupId>org.codehaus.groovy</groupId> |
| 321 | <artifactId>groovy</artifactId> |
Tal Gitelman | e019937 | 2018-09-18 11:57:53 +0300 | [diff] [blame] | 322 | </dependency> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 323 | </dependencies> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 324 | |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 325 | <build> |
| 326 | |
| 327 | <pluginManagement> |
| 328 | <plugins> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 329 | <!--This plugin's configuration is used to store Eclipse m2e settings |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 330 | only. It has no influence on the Maven build itself. --> |
| 331 | <plugin> |
| 332 | <groupId>org.eclipse.m2e</groupId> |
| 333 | <artifactId>lifecycle-mapping</artifactId> |
| 334 | <version>1.0.0</version> |
| 335 | <configuration> |
| 336 | <lifecycleMappingMetadata> |
| 337 | <pluginExecutions> |
| 338 | <pluginExecution> |
| 339 | <pluginExecutionFilter> |
| 340 | <groupId>fr.fastconnect</groupId> |
| 341 | <artifactId>plantuml-maven-plugin</artifactId> |
| 342 | <versionRange>[1.0.0,)</versionRange> |
| 343 | <goals> |
| 344 | <goal>plant</goal> |
| 345 | </goals> |
| 346 | </pluginExecutionFilter> |
| 347 | <action> |
| 348 | <ignore /> |
| 349 | </action> |
| 350 | </pluginExecution> |
| 351 | </pluginExecutions> |
| 352 | </lifecycleMappingMetadata> |
| 353 | </configuration> |
| 354 | </plugin> |
dekstroza | 37843cb | 2018-05-18 14:42:24 +0100 | [diff] [blame] | 355 | <plugin> |
| 356 | <groupId>com.github.sylvainlaurent.maven</groupId> |
| 357 | <artifactId>yaml-json-validator-maven-plugin</artifactId> |
| 358 | <executions> |
| 359 | <execution> |
| 360 | <id>validate</id> |
| 361 | <phase>validate</phase> |
| 362 | <goals> |
| 363 | <goal>validate</goal> |
| 364 | </goals> |
| 365 | <configuration> |
| 366 | <validationSets> |
| 367 | <validationSet> |
| 368 | <includes> |
| 369 | <include>src/main/resources/**/*.y*ml</include> |
| 370 | <include>src/test/resources/**/*.y*ml</include> |
| 371 | </includes> |
| 372 | </validationSet> |
| 373 | <validationSet> |
| 374 | <includes> |
| 375 | <include>src/main/resources/**/*.json</include> |
| 376 | <include>src/test/resources/**/*.json</include> |
| 377 | </includes> |
| 378 | </validationSet> |
| 379 | </validationSets> |
| 380 | </configuration> |
| 381 | </execution> |
| 382 | </executions> |
| 383 | </plugin> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 384 | </plugins> |
| 385 | </pluginManagement> |
| 386 | </build> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 387 | </project> |