blob: 63a65cdc2458e825d369627beb3039026516d99c [file] [log] [blame]
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Smokowski, Steve (ss835w)b2b49ac2018-08-06 09:25:38 -04002 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 Daugherty325d4e22018-10-19 15:13:38 -04006 <version>1.4.0-SNAPSHOT</version>
Smokowski, Steve (ss835w)b2b49ac2018-08-06 09:25:38 -04007 </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)61affc62018-11-05 11:00:36 -050017 <build>
18 <plugins>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-surefire-plugin</artifactId>
22 <executions>
23 <execution>
24 <id>default-test</id>
25 <goals>
26 <goal>test</goal>
27 </goals>
28 <configuration>
29 <includes>
30 <include>**/UnitTestSuite.java</include>
31 </includes>
32 </configuration>
33 </execution>
34 <execution>
35 <id>integration-test</id>
36 <goals>
37 <goal>test</goal>
38 </goals>
39 <configuration>
40 <includes>
41 <include>**/IntegrationTestSuite.java</include>
42 </includes>
43 </configuration>
44 </execution>
45 </executions>
46 </plugin>
47 </plugins>
48 </build>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -040049 <dependencyManagement>
50 <dependencies>
51 <dependency>
52 <!-- Import dependency management from Spring Boot -->
53 <groupId>org.springframework.boot</groupId>
54 <artifactId>spring-boot-dependencies</artifactId>
55 <version>${springboot.version}</version>
56 <type>pom</type>
57 <scope>import</scope>
58 </dependency>
59 </dependencies>
60 </dependencyManagement>
Smokowski, Steve (ss835w)b2b49ac2018-08-06 09:25:38 -040061 <dependencies>
62 <dependency>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -040063 <groupId>org.camunda.bpm.springboot</groupId>
64 <artifactId>camunda-bpm-spring-boot-starter</artifactId>
65 <version>${camunda.springboot.version}</version>
66 <scope>test</scope>
67 </dependency>
68 <dependency>
69 <groupId>org.springframework.cloud</groupId>
70 <artifactId>spring-cloud-contract-wiremock</artifactId>
71 <version>1.2.4.RELEASE</version>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>org.springframework.boot</groupId>
76 <artifactId>spring-boot-starter-test</artifactId>
77 <scope>test</scope>
78 </dependency>
79 <dependency>
80 <groupId>org.camunda.bpm.extension.mockito</groupId>
81 <artifactId>camunda-bpm-mockito</artifactId>
82 <version>3.2.1</version>
83 <scope>test</scope>
84 </dependency>
85 <dependency>
Smokowski, Steve (ss835w)b2b49ac2018-08-06 09:25:38 -040086 <groupId>org.onap.so</groupId>
87 <artifactId>MSOCommonBPMN</artifactId>
88 <version>${project.version}</version>
89 </dependency>
90 <dependency>
91 <groupId>org.onap.so</groupId>
92 <artifactId>so-bpmn-infrastructure-common</artifactId>
93 <version>${project.version}</version>
94 </dependency>
95 <dependency>
96 <groupId>org.onap.sdnc.northbound</groupId>
97 <artifactId>generic-resource-api-client</artifactId>
Benjamin, Max (mb388a)1b4d7642018-10-15 13:04:37 -040098 <version>1.4.1</version>
Benjamin, Max (mb388a)e4f7e562018-08-11 00:17:59 -040099 <exclusions>
100 <exclusion>
101 <groupId>javax.ws.rs</groupId>
102 <artifactId>jsr311-api</artifactId>
103 </exclusion>
104 </exclusions>
Smokowski, Steve (ss835w)b2b49ac2018-08-06 09:25:38 -0400105 </dependency>
106 <dependency>
107 <groupId>ch.vorburger.mariaDB4j</groupId>
108 <artifactId>mariaDB4j</artifactId>
109 <version>2.2.3</version>
110 <scope>test</scope>
111 </dependency>
Smokowski, Steve (ss835w)b2b49ac2018-08-06 09:25:38 -0400112 <dependency>
113 <groupId>org.apache.commons</groupId>
114 <artifactId>commons-lang3</artifactId>
Smokowski, Steve (ss835w)b2b49ac2018-08-06 09:25:38 -0400115 </dependency>
116 </dependencies>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400117</project>