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 | --> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 22 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 23 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 24 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 25 | <modelVersion>4.0.0</modelVersion> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 26 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 27 | <groupId>org.openecomp.sdc.be</groupId> |
| 28 | <artifactId>catalog-dao</artifactId> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 29 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 30 | <parent> |
| 31 | <groupId>org.openecomp.sdc</groupId> |
| 32 | <artifactId>sdc-main</artifactId> |
vasraz | 0dea712 | 2020-10-26 12:53:23 +0000 | [diff] [blame] | 33 | <version>1.7.2-SNAPSHOT</version> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 34 | </parent> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 35 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 36 | <dependencies> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 37 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 38 | <!-- Common of SDC --> |
| 39 | <dependency> |
| 40 | <groupId>org.openecomp.sdc</groupId> |
| 41 | <artifactId>common-app-api</artifactId> |
| 42 | <version>${project.version}</version> |
| 43 | <scope>provided</scope> |
| 44 | </dependency> |
Michael Lando | 2e0ef97 | 2017-02-28 01:44:21 +0200 | [diff] [blame] | 45 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 46 | <dependency> |
| 47 | <groupId>org.openecomp.sdc.be</groupId> |
| 48 | <artifactId>common-be</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | <scope>provided</scope> |
| 51 | </dependency> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 52 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 53 | <dependency> |
| 54 | <groupId>ch.qos.logback</groupId> |
| 55 | <artifactId>logback-classic</artifactId> |
| 56 | <version>${logback.version}</version> |
| 57 | <scope>provided</scope> |
| 58 | </dependency> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 59 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 60 | <!-- SPRING --> |
| 61 | <dependency> |
| 62 | <groupId>org.springframework</groupId> |
| 63 | <artifactId>spring-context</artifactId> |
| 64 | <version>${spring.version}</version> |
| 65 | <scope>provided</scope> |
| 66 | </dependency> |
Tomasz Golabek | c8fcbbc | 2019-07-09 08:42:59 +0200 | [diff] [blame] | 67 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 68 | <dependency> |
| 69 | <groupId>org.springframework</groupId> |
| 70 | <artifactId>spring-core</artifactId> |
| 71 | <version>${spring.version}</version> |
| 72 | <scope>provided</scope> |
| 73 | </dependency> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 74 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 75 | <dependency> |
| 76 | <groupId>org.springframework</groupId> |
| 77 | <artifactId>spring-context-support</artifactId> |
| 78 | <version>${spring.version}</version> |
| 79 | <scope>provided</scope> |
| 80 | </dependency> |
Michael Lando | c0ac015 | 2017-02-27 23:48:43 +0200 | [diff] [blame] | 81 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 82 | <dependency> |
| 83 | <groupId>org.springframework</groupId> |
| 84 | <artifactId>spring-beans</artifactId> |
| 85 | <version>${spring.version}</version> |
| 86 | <scope>provided</scope> |
| 87 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 88 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 89 | <dependency> |
| 90 | <groupId>org.aspectj</groupId> |
| 91 | <artifactId>aspectjrt</artifactId> |
| 92 | <version>${aspectj.version}</version> |
| 93 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 94 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 95 | <dependency> |
| 96 | <groupId>org.aspectj</groupId> |
| 97 | <artifactId>aspectjweaver</artifactId> |
| 98 | <version>${aspectj.version}</version> |
| 99 | </dependency> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 100 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 101 | <dependency> |
| 102 | <groupId>org.springframework</groupId> |
| 103 | <artifactId>spring-aop</artifactId> |
| 104 | <version>${spring.version}</version> |
| 105 | </dependency> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 106 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 107 | <dependency> |
| 108 | <groupId>org.springframework</groupId> |
| 109 | <artifactId>spring-tx</artifactId> |
| 110 | <version>${spring.version}</version> |
| 111 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 112 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 113 | <dependency> |
| 114 | <groupId>com.fasterxml.jackson.core</groupId> |
| 115 | <artifactId>jackson-databind</artifactId> |
| 116 | <version>${jackson.version}</version> |
vasraz | ca685bb | 2020-06-11 17:05:29 +0100 | [diff] [blame] | 117 | <exclusions> |
| 118 | <exclusion> |
| 119 | <groupId>com.fasterxml.jackson.core</groupId> |
| 120 | <artifactId>jackson-core</artifactId> |
| 121 | </exclusion> |
| 122 | </exclusions> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 123 | </dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 124 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 125 | <dependency> |
| 126 | <groupId>com.fasterxml.jackson.core</groupId> |
| 127 | <artifactId>jackson-core</artifactId> |
| 128 | <version>${jackson.version}</version> |
| 129 | </dependency> |
Michael Lando | 5b59349 | 2018-07-29 16:13:45 +0300 | [diff] [blame] | 130 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 131 | <dependency> |
| 132 | <groupId>com.googlecode.json-simple</groupId> |
| 133 | <artifactId>json-simple</artifactId> |
| 134 | <version>${json-simple.version}</version> |
| 135 | <scope>provided</scope> |
| 136 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 137 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 138 | <dependency> |
| 139 | <groupId>org.apache.lucene</groupId> |
| 140 | <artifactId>lucene-regex</artifactId> |
| 141 | <version>${regex.version}</version> |
| 142 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 143 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 144 | <dependency> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 145 | <groupId>org.jmockit</groupId> |
| 146 | <artifactId>jmockit</artifactId> |
| 147 | <scope>test</scope> |
| 148 | </dependency> |
Piotr Darosz | 0081451 | 2018-06-18 12:46:35 +0200 | [diff] [blame] | 149 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 150 | <dependency> |
| 151 | <groupId>com.google.code.bean-matchers</groupId> |
| 152 | <artifactId>bean-matchers</artifactId> |
| 153 | <version>${bean-matchers.version}</version> |
| 154 | <scope>test</scope> |
| 155 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 156 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 157 | <dependency> |
| 158 | <groupId>org.yaml</groupId> |
| 159 | <artifactId>snakeyaml</artifactId> |
| 160 | <version>${snakeyaml.version}</version> |
| 161 | <scope>provided</scope> |
| 162 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 163 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 164 | <dependency> |
| 165 | <groupId>com.google.code.gson</groupId> |
| 166 | <artifactId>gson</artifactId> |
| 167 | <version>${gson.version}</version> |
| 168 | <scope>provided</scope> |
| 169 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 170 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 171 | <dependency> |
| 172 | <groupId>org.functionaljava</groupId> |
| 173 | <artifactId>functionaljava</artifactId> |
| 174 | <version>${functionaljava.version}</version> |
| 175 | <scope>provided</scope> |
| 176 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 177 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 178 | <!-- http client --> |
| 179 | <dependency> |
| 180 | <groupId>org.apache.httpcomponents</groupId> |
| 181 | <artifactId>httpclient</artifactId> |
| 182 | <version>${httpclient.version}</version> |
| 183 | <scope>provided</scope> |
| 184 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 185 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 186 | <dependency> |
| 187 | <groupId>org.apache.httpcomponents</groupId> |
| 188 | <artifactId>httpcore</artifactId> |
| 189 | <version>${httpcore.version}</version> |
| 190 | <scope>provided</scope> |
| 191 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 192 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 193 | <dependency> |
| 194 | <groupId>com.google.guava</groupId> |
| 195 | <artifactId>guava</artifactId> |
| 196 | <version>${guava.version}</version> |
| 197 | <scope>provided</scope> |
| 198 | </dependency> |
Michael Lando | a544510 | 2018-03-04 14:53:33 +0200 | [diff] [blame] | 199 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 200 | <!-- TEST --> |
| 201 | <dependency> |
| 202 | <groupId>org.assertj</groupId> |
| 203 | <artifactId>assertj-core</artifactId> |
| 204 | <scope>test</scope> |
| 205 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 206 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 207 | <dependency> |
| 208 | <groupId>org.springframework</groupId> |
| 209 | <artifactId>spring-test</artifactId> |
| 210 | <version>${spring.version}</version> |
| 211 | <scope>test</scope> |
| 212 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 213 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 214 | <dependency> |
| 215 | <groupId>org.junit.jupiter</groupId> |
| 216 | <artifactId>junit-jupiter</artifactId> |
| 217 | <version>${junitJupiter.version}</version> |
| 218 | <scope>test</scope> |
| 219 | </dependency> |
Baumel, Dvir (db384r) | 3e87932 | 2020-03-23 16:21:05 +0200 | [diff] [blame] | 220 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 221 | <dependency> |
| 222 | <groupId>org.mockito</groupId> |
| 223 | <artifactId>mockito-junit-jupiter</artifactId> |
| 224 | <version>${mockitoJupiter.version}</version> |
| 225 | <scope>test</scope> |
| 226 | </dependency> |
Baumel, Dvir (db384r) | 3e87932 | 2020-03-23 16:21:05 +0200 | [diff] [blame] | 227 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 228 | <dependency> |
| 229 | <groupId>org.apache.commons</groupId> |
| 230 | <artifactId>commons-jci-core</artifactId> |
| 231 | <version>${commons-jci-core.version}</version> |
| 232 | <scope>test</scope> |
| 233 | </dependency> |
Michael Lando | ed64b5e | 2017-06-09 03:19:04 +0300 | [diff] [blame] | 234 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 235 | <dependency> |
| 236 | <groupId>org.springframework</groupId> |
| 237 | <artifactId>spring-expression</artifactId> |
| 238 | <version>${spring.version}</version> |
| 239 | <scope>test</scope> |
| 240 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 241 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 242 | <dependency> |
| 243 | <groupId>org.janusgraph</groupId> |
| 244 | <artifactId>janusgraph-core</artifactId> |
| 245 | <version>${janusgraph.version}</version> |
| 246 | <scope>provided</scope> |
| 247 | <exclusions> |
| 248 | <exclusion> |
| 249 | <groupId>org.json</groupId> |
| 250 | <artifactId>json</artifactId> |
| 251 | </exclusion> |
| 252 | <exclusion> |
| 253 | <artifactId>slf4j-log4j12</artifactId> |
| 254 | <groupId>org.slf4j</groupId> |
| 255 | </exclusion> |
| 256 | <exclusion> |
| 257 | <artifactId>commons-collections</artifactId> |
| 258 | <groupId>commons-collections</groupId> |
| 259 | </exclusion> |
| 260 | <exclusion> |
| 261 | <artifactId>groovy</artifactId> |
| 262 | <groupId>org.codehaus.groovy</groupId> |
| 263 | </exclusion> |
| 264 | </exclusions> |
| 265 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 266 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 267 | <dependency> |
| 268 | <groupId>org.janusgraph</groupId> |
| 269 | <artifactId>janusgraph-cassandra</artifactId> |
| 270 | <version>${janusgraph.version}</version> |
| 271 | <scope>provided</scope> |
| 272 | <exclusions> |
| 273 | <exclusion> |
| 274 | <groupId>org.slf4j</groupId> |
| 275 | <artifactId>slf4j-log4j12</artifactId> |
| 276 | </exclusion> |
| 277 | </exclusions> |
| 278 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 279 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 280 | <dependency> |
| 281 | <groupId>org.apache.commons</groupId> |
| 282 | <artifactId>commons-lang3</artifactId> |
| 283 | <version>${lang3.version}</version> |
| 284 | <scope>provided</scope> |
| 285 | </dependency> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 286 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 287 | <!-- CASSANDRA --> |
| 288 | <dependency> |
| 289 | <groupId>com.datastax.cassandra</groupId> |
| 290 | <artifactId>cassandra-driver-core</artifactId> |
| 291 | <version>${cassandra.driver.version}</version> |
| 292 | <scope>provided</scope> |
| 293 | <exclusions> |
| 294 | <exclusion> |
| 295 | <groupId>io.netty</groupId> |
| 296 | <artifactId>netty-handler</artifactId> |
| 297 | </exclusion> |
| 298 | </exclusions> |
| 299 | </dependency> |
| 300 | <dependency> |
| 301 | <groupId>com.datastax.cassandra</groupId> |
| 302 | <artifactId>cassandra-driver-mapping</artifactId> |
| 303 | <version>${cassandra.driver.version}</version> |
| 304 | <scope>provided</scope> |
| 305 | </dependency> |
| 306 | <dependency> |
| 307 | <groupId>com.datastax.oss</groupId> |
| 308 | <artifactId>java-driver-core</artifactId> |
| 309 | <version>${java.driver.core.version}</version> |
| 310 | </dependency> |
| 311 | <dependency> |
| 312 | <groupId>org.cassandraunit</groupId> |
| 313 | <artifactId>cassandra-unit</artifactId> |
| 314 | <version>${cassandra.unit.version}</version> |
| 315 | <scope>test</scope> |
| 316 | <exclusions> |
| 317 | <exclusion> |
| 318 | <groupId>org.apache.cassandra</groupId> |
| 319 | <artifactId>cassandra-all</artifactId> |
| 320 | </exclusion> |
| 321 | <exclusion> |
| 322 | <groupId>org.apache.thrift</groupId> |
| 323 | <artifactId>libthrift</artifactId> |
| 324 | </exclusion> |
| 325 | </exclusions> |
| 326 | </dependency> |
| 327 | <dependency> |
| 328 | <groupId>org.apache.cassandra</groupId> |
| 329 | <artifactId>cassandra-all</artifactId> |
| 330 | <version>3.11.3</version> |
| 331 | <scope>test</scope> |
| 332 | </dependency> |
| 333 | <!-- CASSANDRA END --> |
Tal Gitelman | e019937 | 2018-09-18 11:57:53 +0300 | [diff] [blame] | 334 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 335 | <dependency> |
| 336 | <groupId>org.codehaus.groovy</groupId> |
| 337 | <artifactId>groovy</artifactId> |
| 338 | </dependency> |
talio | a098eda | 2020-06-17 15:57:06 +0300 | [diff] [blame] | 339 | <dependency> |
| 340 | <groupId>org.togglz</groupId> |
| 341 | <artifactId>togglz-testing</artifactId> |
| 342 | <version>${togglz.version}</version> |
| 343 | <scope>test</scope> |
| 344 | </dependency> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 345 | </dependencies> |
Michael Lando | 451a340 | 2017-02-19 10:28:42 +0200 | [diff] [blame] | 346 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 347 | <build> |
sebdet | 5b05708 | 2020-09-01 23:47:27 +0200 | [diff] [blame] | 348 | <plugins> |
| 349 | <plugin> |
| 350 | <groupId>org.apache.maven.plugins</groupId> |
| 351 | <artifactId>maven-surefire-plugin</artifactId> |
| 352 | <configuration> |
| 353 | <forkCount>1</forkCount> |
| 354 | </configuration> |
| 355 | </plugin> |
| 356 | </plugins> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 357 | <pluginManagement> |
| 358 | <plugins> |
| 359 | <!--This plugin's configuration is used to store Eclipse m2e settings |
| 360 | only. It has no influence on the Maven build itself. --> |
| 361 | <plugin> |
| 362 | <groupId>org.eclipse.m2e</groupId> |
| 363 | <artifactId>lifecycle-mapping</artifactId> |
| 364 | <version>1.0.0</version> |
| 365 | <configuration> |
| 366 | <lifecycleMappingMetadata> |
| 367 | <pluginExecutions> |
| 368 | <pluginExecution> |
| 369 | <pluginExecutionFilter> |
| 370 | <groupId>fr.fastconnect</groupId> |
| 371 | <artifactId>plantuml-maven-plugin</artifactId> |
| 372 | <versionRange>[1.0.0,)</versionRange> |
| 373 | <goals> |
| 374 | <goal>plant</goal> |
| 375 | </goals> |
| 376 | </pluginExecutionFilter> |
| 377 | <action> |
| 378 | <ignore/> |
| 379 | </action> |
| 380 | </pluginExecution> |
| 381 | </pluginExecutions> |
| 382 | </lifecycleMappingMetadata> |
| 383 | </configuration> |
| 384 | </plugin> |
| 385 | <plugin> |
| 386 | <groupId>com.github.sylvainlaurent.maven</groupId> |
| 387 | <artifactId>yaml-json-validator-maven-plugin</artifactId> |
| 388 | <executions> |
| 389 | <execution> |
| 390 | <id>validate</id> |
| 391 | <phase>validate</phase> |
| 392 | <goals> |
| 393 | <goal>validate</goal> |
| 394 | </goals> |
| 395 | <configuration> |
| 396 | <validationSets> |
| 397 | <validationSet> |
| 398 | <includes> |
| 399 | <include>src/main/resources/**/*.y*ml</include> |
| 400 | <include>src/test/resources/**/*.y*ml</include> |
| 401 | </includes> |
| 402 | </validationSet> |
| 403 | <validationSet> |
| 404 | <includes> |
| 405 | <include>src/main/resources/**/*.json</include> |
| 406 | <include>src/test/resources/**/*.json</include> |
| 407 | </includes> |
| 408 | </validationSet> |
| 409 | </validationSets> |
JulienBe | 6bd3d3a | 2020-06-24 15:35:23 +0200 | [diff] [blame] | 410 | <skip>${skipYamlJsonValidator}</skip> |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 411 | </configuration> |
| 412 | </execution> |
| 413 | </executions> |
| 414 | </plugin> |
| 415 | </plugins> |
| 416 | </pluginManagement> |
sebdet | 5b05708 | 2020-09-01 23:47:27 +0200 | [diff] [blame] | 417 | |
vasraz | a36531c | 2020-04-29 18:39:35 +0100 | [diff] [blame] | 418 | </build> |
JulienBe | 56f99ec | 2020-06-24 17:31:27 +0200 | [diff] [blame] | 419 | </project> |