Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 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>bpmn</artifactId> |
Rob Daugherty | 325d4e2 | 2018-10-19 15:13:38 -0400 | [diff] [blame] | 6 | <version>1.4.0-SNAPSHOT</version> |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
| 9 | <artifactId>so-bpmn-tasks</artifactId> |
| 10 | <packaging>jar</packaging> |
| 11 | <properties> |
| 12 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 13 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 14 | <maven.compiler.target>1.8</maven.compiler.target> |
| 15 | <maven.compiler.source>1.8</maven.compiler.source> |
| 16 | </properties> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame^] | 17 | <dependencyManagement> |
| 18 | <dependencies> |
| 19 | <dependency> |
| 20 | <!-- Import dependency management from Spring Boot --> |
| 21 | <groupId>org.springframework.boot</groupId> |
| 22 | <artifactId>spring-boot-dependencies</artifactId> |
| 23 | <version>${springboot.version}</version> |
| 24 | <type>pom</type> |
| 25 | <scope>import</scope> |
| 26 | </dependency> |
| 27 | </dependencies> |
| 28 | </dependencyManagement> |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 29 | <dependencies> |
| 30 | <dependency> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame^] | 31 | <groupId>org.camunda.bpm.springboot</groupId> |
| 32 | <artifactId>camunda-bpm-spring-boot-starter</artifactId> |
| 33 | <version>${camunda.springboot.version}</version> |
| 34 | <scope>test</scope> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>org.springframework.cloud</groupId> |
| 38 | <artifactId>spring-cloud-contract-wiremock</artifactId> |
| 39 | <version>1.2.4.RELEASE</version> |
| 40 | <scope>test</scope> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>org.springframework.boot</groupId> |
| 44 | <artifactId>spring-boot-starter-test</artifactId> |
| 45 | <scope>test</scope> |
| 46 | </dependency> |
| 47 | <dependency> |
| 48 | <groupId>org.camunda.bpm.extension.mockito</groupId> |
| 49 | <artifactId>camunda-bpm-mockito</artifactId> |
| 50 | <version>3.2.1</version> |
| 51 | <scope>test</scope> |
| 52 | </dependency> |
| 53 | <dependency> |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 54 | <groupId>org.onap.so</groupId> |
| 55 | <artifactId>MSOCommonBPMN</artifactId> |
| 56 | <version>${project.version}</version> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.onap.so</groupId> |
| 60 | <artifactId>so-bpmn-infrastructure-common</artifactId> |
| 61 | <version>${project.version}</version> |
| 62 | </dependency> |
| 63 | <dependency> |
| 64 | <groupId>org.onap.sdnc.northbound</groupId> |
| 65 | <artifactId>generic-resource-api-client</artifactId> |
Benjamin, Max (mb388a) | 1b4d764 | 2018-10-15 13:04:37 -0400 | [diff] [blame] | 66 | <version>1.4.1</version> |
Benjamin, Max (mb388a) | e4f7e56 | 2018-08-11 00:17:59 -0400 | [diff] [blame] | 67 | <exclusions> |
| 68 | <exclusion> |
| 69 | <groupId>javax.ws.rs</groupId> |
| 70 | <artifactId>jsr311-api</artifactId> |
| 71 | </exclusion> |
| 72 | </exclusions> |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 73 | </dependency> |
| 74 | <dependency> |
| 75 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 76 | <artifactId>mariaDB4j</artifactId> |
| 77 | <version>2.2.3</version> |
| 78 | <scope>test</scope> |
| 79 | </dependency> |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 80 | <dependency> |
| 81 | <groupId>org.apache.commons</groupId> |
| 82 | <artifactId>commons-lang3</artifactId> |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 83 | </dependency> |
| 84 | </dependencies> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 85 | </project> |