blob: a867613890deae12e608b852071cc6038afefefe [file] [log] [blame]
Gary Wu1c1fc782018-08-24 15:30:22 -07001<?xml version="1.0"?>
Benjamin, Max (mb388a)6fa3d2b2018-09-29 10:41:54 -04002<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -04003 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <parent>
5 <groupId>org.onap.so</groupId>
6 <artifactId>bpmn</artifactId>
7 <version>1.4.0-SNAPSHOT</version>
8 </parent>
9 <modelVersion>4.0.0</modelVersion>
10 <artifactId>so-bpmn-building-blocks</artifactId>
11 <packaging>jar</packaging>
12 <properties>
13 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
14 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
15 </properties>
16 <build>
17 <plugins>
18 <plugin>
19 <groupId>org.apache.cxf</groupId>
20 <artifactId>cxf-codegen-plugin</artifactId>
21 <version>2.5.2</version>
22 </plugin>
23 <plugin>
24 <groupId>org.apache.maven.plugins</groupId>
25 <artifactId>maven-surefire-plugin</artifactId>
26 <executions>
27 <execution>
28 <id>default-test</id>
29 <goals>
30 <goal>test</goal>
31 </goals>
32 <configuration>
33 <includes>
34 <include>**/AllTestSuites.java</include>
35 </includes>
36 </configuration>
37 </execution>
38 </executions>
39 <configuration>
40 <parallel>suites</parallel>
41 </configuration>
42 </plugin>
43 </plugins>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040044
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040045 <pluginManagement>
46 <plugins>
47 <!--This plugin's configuration is used to store Eclipse m2e settings
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040048 only. It has no influence on the Maven build itself. -->
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040049 <plugin>
50 <groupId>org.eclipse.m2e</groupId>
51 <artifactId>lifecycle-mapping</artifactId>
52 <version>1.0.0</version>
53 <configuration>
54 <lifecycleMappingMetadata>
55 <pluginExecutions>
56 <pluginExecution>
57 <pluginExecutionFilter>
58 <groupId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040059 org.apache.maven.plugins
60 </groupId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040061 <artifactId>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040062 maven-antrun-plugin
63 </artifactId>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040064 <versionRange>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040065 [1.3,)
66 </versionRange>
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -040067 <goals>
68 <goal>run</goal>
69 </goals>
70 </pluginExecutionFilter>
71 <action>
72 <ignore />
73 </action>
74 </pluginExecution>
75 </pluginExecutions>
76 </lifecycleMappingMetadata>
77 </configuration>
78 </plugin>
79 </plugins>
80 </pluginManagement>
81 </build>
82 <dependencies>
83 <dependency>
84 <groupId>org.camunda.bpm</groupId>
85 <artifactId>camunda-engine</artifactId>
86 <version>${camunda.version}</version>
87 </dependency>
88 <dependency>
89 <groupId>org.camunda.bpm.springboot</groupId>
90 <artifactId>camunda-bpm-spring-boot-starter</artifactId>
91 <version>${camunda.springboot.version}</version>
92 <scope>test</scope>
93 </dependency>
94 <dependency>
95 <groupId>org.camunda.bpm.springboot</groupId>
96 <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
97 <version>${camunda.springboot.version}</version>
98 <scope>test</scope>
99 </dependency>
100 <dependency>
101 <groupId>org.camunda.bpm.extension.mockito</groupId>
102 <artifactId>camunda-bpm-mockito</artifactId>
103 <version>3.2.1</version>
104 <scope>test</scope>
105 </dependency>
106 <dependency>
107 <groupId>org.camunda.bpm.extension</groupId>
108 <artifactId>camunda-bpm-assert</artifactId>
109 <version>2.0-alpha2</version>
110 <scope>test</scope>
111 </dependency>
112 <dependency>
113 <groupId>org.assertj</groupId>
114 <artifactId>assertj-core</artifactId>
115 <version>1.7.0</version>
116 <scope>test</scope>
117 </dependency>
118 <dependency>
119 <groupId>org.springframework.boot</groupId>
120 <artifactId>spring-boot-starter-test</artifactId>
121 <scope>test</scope>
122 </dependency>
123 <dependency>
124 <groupId>com.h2database</groupId>
125 <artifactId>h2</artifactId>
126 <scope>test</scope>
127 </dependency>
128 <dependency>
129 <groupId>org.onap.so</groupId>
130 <artifactId>MSOCommonBPMN</artifactId>
131 <version>${project.version}</version>
132 </dependency>
133 <dependency>
134 <groupId>org.onap.so</groupId>
135 <artifactId>so-bpmn-tasks</artifactId>
136 <version>${project.version}</version>
137 </dependency>
138 <dependency>
139 <groupId>org.onap.so</groupId>
140 <artifactId>so-bpmn-infrastructure-common</artifactId>
141 <version>${project.version}</version>
142 </dependency>
143 <dependency>
144 <groupId>commons-net</groupId>
145 <artifactId>commons-net</artifactId>
146 <version>3.6</version>
147 </dependency>
148 <dependency>
149 <groupId>ch.vorburger.mariaDB4j</groupId>
150 <artifactId>mariaDB4j</artifactId>
151 <version>2.2.3</version>
152 <scope>test</scope>
153 </dependency>
Benjamin, Max (mb388a)4e633482019-02-01 18:13:35 -0500154
Benjamin, Max (mb388a)c0247ec2019-04-11 10:34:45 -0400155 </dependencies>
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -0400156</project>