Boslet, Cory | b7c956f | 2020-07-06 09:58:17 -0400 | [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 | <parent> |
| 4 | <groupId>org.onap.so</groupId> |
| 5 | <artifactId>so</artifactId> |
waqas.ikram | 9853763 | 2021-06-24 11:51:34 +0100 | [diff] [blame] | 6 | <version>1.9.0-SNAPSHOT</version> |
Boslet, Cory | b7c956f | 2020-07-06 09:58:17 -0400 | [diff] [blame] | 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
| 9 | <artifactId>so-optimization-clients</artifactId> |
| 10 | <build> |
| 11 | <plugins> |
| 12 | <plugin> |
| 13 | <groupId>org.apache.maven.plugins</groupId> |
| 14 | <artifactId>maven-surefire-plugin</artifactId> |
| 15 | <executions> |
| 16 | <execution> |
| 17 | <id>integration-test</id> |
| 18 | <goals> |
| 19 | <goal>test</goal> |
| 20 | </goals> |
| 21 | <configuration> |
| 22 | <includes> |
| 23 | <include>**/IntegrationTestSuite.java</include> |
| 24 | </includes> |
| 25 | </configuration> |
| 26 | </execution> |
| 27 | </executions> |
| 28 | <configuration> |
| 29 | <parallel>suites</parallel> |
| 30 | </configuration> |
| 31 | </plugin> |
| 32 | </plugins> |
| 33 | </build> |
| 34 | <dependencyManagement> |
| 35 | <dependencies> |
| 36 | <dependency> |
| 37 | <!-- Import dependency management from Spring Boot --> |
| 38 | <groupId>org.springframework.boot</groupId> |
| 39 | <artifactId>spring-boot-dependencies</artifactId> |
| 40 | <version>${springboot.version}</version> |
| 41 | <type>pom</type> |
| 42 | <scope>import</scope> |
| 43 | </dependency> |
Benjamin, Max (mb388a) | d5968f5 | 2021-02-05 20:34:11 -0500 | [diff] [blame] | 44 | <dependency> |
| 45 | <groupId>org.camunda.bpm</groupId> |
| 46 | <artifactId>camunda-bom</artifactId> |
| 47 | <version>7.14.0</version> |
| 48 | <scope>import</scope> |
| 49 | <type>pom</type> |
| 50 | </dependency> |
Boslet, Cory | b7c956f | 2020-07-06 09:58:17 -0400 | [diff] [blame] | 51 | </dependencies> |
| 52 | </dependencyManagement> |
| 53 | <dependencies> |
| 54 | <dependency> |
| 55 | <groupId>org.camunda.bpm.springboot</groupId> |
| 56 | <artifactId>camunda-bpm-spring-boot-starter</artifactId> |
Boslet, Cory | b7c956f | 2020-07-06 09:58:17 -0400 | [diff] [blame] | 57 | <scope>test</scope> |
| 58 | </dependency> |
| 59 | <dependency> |
| 60 | <groupId>org.springframework.cloud</groupId> |
| 61 | <artifactId>spring-cloud-contract-wiremock</artifactId> |
Boslet, Cory | b7c956f | 2020-07-06 09:58:17 -0400 | [diff] [blame] | 62 | <scope>test</scope> |
| 63 | </dependency> |
| 64 | <dependency> |
| 65 | <groupId>org.springframework.boot</groupId> |
| 66 | <artifactId>spring-boot-starter-test</artifactId> |
| 67 | <scope>test</scope> |
| 68 | </dependency> |
| 69 | <dependency> |
| 70 | <groupId>org.apache.commons</groupId> |
| 71 | <artifactId>commons-lang3</artifactId> |
| 72 | </dependency> |
| 73 | <dependency> |
| 74 | <groupId>org.springframework.boot</groupId> |
| 75 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 76 | <optional>true</optional> |
| 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.onap.so</groupId> |
| 80 | <artifactId>common</artifactId> |
| 81 | <version>${project.version}</version> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 85 | <artifactId>mariaDB4j</artifactId> |
Boslet, Cory | b7c956f | 2020-07-06 09:58:17 -0400 | [diff] [blame] | 86 | <scope>test</scope> |
| 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.mariadb.jdbc</groupId> |
| 90 | <artifactId>mariadb-java-client</artifactId> |
| 91 | </dependency> |
| 92 | </dependencies> |
| 93 | </project> |