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) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 17 | |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 18 | <dependencies> |
| 19 | <dependency> |
| 20 | <groupId>org.onap.so</groupId> |
| 21 | <artifactId>MSOCommonBPMN</artifactId> |
| 22 | <version>${project.version}</version> |
| 23 | </dependency> |
| 24 | <dependency> |
| 25 | <groupId>org.onap.so</groupId> |
| 26 | <artifactId>so-bpmn-infrastructure-common</artifactId> |
| 27 | <version>${project.version}</version> |
| 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>org.onap.sdnc.northbound</groupId> |
| 31 | <artifactId>generic-resource-api-client</artifactId> |
Benjamin, Max (mb388a) | 1b4d764 | 2018-10-15 13:04:37 -0400 | [diff] [blame] | 32 | <version>1.4.1</version> |
Benjamin, Max (mb388a) | e4f7e56 | 2018-08-11 00:17:59 -0400 | [diff] [blame] | 33 | <exclusions> |
| 34 | <exclusion> |
| 35 | <groupId>javax.ws.rs</groupId> |
| 36 | <artifactId>jsr311-api</artifactId> |
| 37 | </exclusion> |
| 38 | </exclusions> |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 42 | <artifactId>mariaDB4j</artifactId> |
| 43 | <version>2.2.3</version> |
| 44 | <scope>test</scope> |
| 45 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 46 | |
Smokowski, Steve (ss835w) | b2b49ac | 2018-08-06 09:25:38 -0400 | [diff] [blame] | 47 | <dependency> |
| 48 | <groupId>org.apache.commons</groupId> |
| 49 | <artifactId>commons-lang3</artifactId> |
| 50 | <version>3.4</version> |
| 51 | </dependency> |
| 52 | </dependencies> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 53 | </project> |