Gary Wu | 1c1fc78 | 2018-08-24 15:30:22 -0700 | [diff] [blame] | 1 | <?xml version="1.0"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 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> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
| 9 | <artifactId>so-bpmn-infrastructure-flows</artifactId> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 10 | <packaging>jar</packaging> |
eeginux | 88c47a2 | 2019-04-03 14:28:09 +0000 | [diff] [blame] | 11 | |
| 12 | <properties> |
| 13 | <camunda.bpm.assert.version>2.0-alpha2</camunda.bpm.assert.version> |
| 14 | <assertj.core.version>1.7.0</assertj.core.version> |
| 15 | <grpc.version>1.17.1</grpc.version> |
| 16 | <camunda.mockito.version>3.2.1</camunda.mockito.version> |
| 17 | </properties> |
| 18 | |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 19 | <build> |
| 20 | <plugins> |
| 21 | <plugin> |
| 22 | <groupId>org.apache.cxf</groupId> |
| 23 | <artifactId>cxf-codegen-plugin</artifactId> |
| 24 | <version>2.5.2</version> |
| 25 | </plugin> |
| 26 | <plugin> |
| 27 | <groupId>org.apache.maven.plugins</groupId> |
| 28 | <artifactId>maven-dependency-plugin</artifactId> |
| 29 | </plugin> |
| 30 | <plugin> |
| 31 | <artifactId>maven-failsafe-plugin</artifactId> |
| 32 | <version>2.6</version> |
| 33 | <executions> |
| 34 | <execution> |
| 35 | <goals> |
| 36 | <goal>integration-test</goal> |
| 37 | <goal>verify</goal> |
| 38 | </goals> |
| 39 | </execution> |
| 40 | </executions> |
| 41 | </plugin> |
| 42 | </plugins> |
| 43 | <pluginManagement> |
| 44 | <plugins> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 45 | <!--This plugin's configuration is used to store Eclipse m2e settings |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 46 | only. It has no influence on the Maven build itself. --> |
| 47 | <plugin> |
| 48 | <groupId>org.eclipse.m2e</groupId> |
| 49 | <artifactId>lifecycle-mapping</artifactId> |
| 50 | <version>1.0.0</version> |
| 51 | <configuration> |
| 52 | <lifecycleMappingMetadata> |
| 53 | <pluginExecutions> |
| 54 | <pluginExecution> |
| 55 | <pluginExecutionFilter> |
| 56 | <groupId> |
| 57 | org.apache.maven.plugins |
| 58 | </groupId> |
| 59 | <artifactId> |
| 60 | maven-antrun-plugin |
| 61 | </artifactId> |
| 62 | <versionRange> |
| 63 | [1.3,) |
| 64 | </versionRange> |
| 65 | <goals> |
| 66 | <goal>run</goal> |
| 67 | </goals> |
| 68 | </pluginExecutionFilter> |
| 69 | <action> |
Gary Wu | 1c1fc78 | 2018-08-24 15:30:22 -0700 | [diff] [blame] | 70 | <ignore/> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 71 | </action> |
| 72 | </pluginExecution> |
| 73 | </pluginExecutions> |
| 74 | </lifecycleMappingMetadata> |
| 75 | </configuration> |
| 76 | </plugin> |
| 77 | <plugin> |
| 78 | <groupId>org.apache.maven.plugins</groupId> |
| 79 | <artifactId>maven-surefire-plugin</artifactId> |
| 80 | <executions> |
Smokowski, Steve (ss835w) | 1db2da2 | 2018-08-08 16:03:53 -0400 | [diff] [blame] | 81 | <execution> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 82 | <id>default-test</id> |
| 83 | <goals> |
| 84 | <goal>test</goal> |
| 85 | </goals> |
Smokowski, Steve (ss835w) | 1db2da2 | 2018-08-08 16:03:53 -0400 | [diff] [blame] | 86 | <configuration> |
| 87 | <includes> |
| 88 | <include>**/AllTestsTestSuite.java</include> |
| 89 | </includes> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 90 | </configuration> |
| 91 | </execution> |
| 92 | <execution> |
| 93 | <id>tasks-test</id> |
| 94 | <goals> |
| 95 | <goal>test</goal> |
| 96 | </goals> |
Smokowski, Steve (ss835w) | 1db2da2 | 2018-08-08 16:03:53 -0400 | [diff] [blame] | 97 | <configuration> |
| 98 | <includes> |
| 99 | <include>**/AllTasksTestsTestSuite.java</include> |
| 100 | </includes> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 101 | </configuration> |
| 102 | </execution> |
| 103 | <execution> |
Smokowski, Steve (ss835w) | 1db2da2 | 2018-08-08 16:03:53 -0400 | [diff] [blame] | 104 | <id>bpmn-test</id> |
| 105 | <goals> |
| 106 | <goal>test</goal> |
| 107 | </goals> |
| 108 | <configuration> |
| 109 | <includes> |
| 110 | <include>**/AllBPMNTestSuites.java</include> |
| 111 | </includes> |
| 112 | </configuration> |
| 113 | </execution> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 114 | </executions> |
Benjamin, Max (mb388a) | aaa93d4 | 2019-03-20 14:12:06 -0400 | [diff] [blame] | 115 | <configuration> |
| 116 | <parallel>suites</parallel> |
| 117 | </configuration> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 118 | </plugin> |
| 119 | </plugins> |
| 120 | </pluginManagement> |
| 121 | <finalName>${project.artifactId}-${project.version}</finalName> |
| 122 | </build> |
| 123 | |
| 124 | <dependencyManagement> |
| 125 | <dependencies> |
| 126 | <dependency> |
| 127 | <groupId>org.camunda.bpm</groupId> |
| 128 | <artifactId>camunda-bom</artifactId> |
| 129 | <version>${camunda.version}</version> |
| 130 | <scope>import</scope> |
| 131 | <type>pom</type> |
| 132 | </dependency> |
| 133 | </dependencies> |
| 134 | </dependencyManagement> |
| 135 | |
| 136 | <dependencies> |
| 137 | <dependency> |
| 138 | <groupId>org.camunda.bpm.springboot</groupId> |
| 139 | <artifactId>camunda-bpm-spring-boot-starter</artifactId> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 140 | <version>${camunda.springboot.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 141 | <scope>test</scope> |
| 142 | </dependency> |
| 143 | <dependency> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 144 | <groupId>org.camunda.bpm.springboot</groupId> |
| 145 | <artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId> |
| 146 | <version>${camunda.springboot.version}</version> |
| 147 | <scope>test</scope> |
Benjamin, Max (mb388a) | 61affc6 | 2018-11-05 11:00:36 -0500 | [diff] [blame] | 148 | </dependency> |
Benjamin, Max (mb388a) | 6fa3d2b | 2018-09-29 10:41:54 -0400 | [diff] [blame] | 149 | <dependency> |
eeginux | 88c47a2 | 2019-04-03 14:28:09 +0000 | [diff] [blame] | 150 | <groupId>org.camunda.bpm.extension.mockito</groupId> |
| 151 | <artifactId>camunda-bpm-mockito</artifactId> |
| 152 | <version>${camunda.mockito.version}</version> |
| 153 | <scope>test</scope> |
| 154 | </dependency> |
| 155 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 156 | <groupId>org.springframework.boot</groupId> |
Smokowski, Steve (ss835w) | 1db2da2 | 2018-08-08 16:03:53 -0400 | [diff] [blame] | 157 | <artifactId>spring-boot-starter-test</artifactId> |
| 158 | <scope>test</scope> |
| 159 | </dependency> |
| 160 | <dependency> |
| 161 | <groupId>org.springframework.boot</groupId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 162 | <artifactId>spring-boot-starter-web</artifactId> |
| 163 | <scope>test</scope> |
Smokowski, Steve (ss835w) | 1db2da2 | 2018-08-08 16:03:53 -0400 | [diff] [blame] | 164 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 165 | <dependency> |
| 166 | <groupId>org.springframework.boot</groupId> |
| 167 | <artifactId>spring-boot-starter-data-jpa</artifactId> |
| 168 | <optional>true</optional> |
| 169 | </dependency> |
| 170 | <dependency> |
| 171 | <groupId>org.apache.cxf</groupId> |
| 172 | <artifactId>cxf-spring-boot-starter-jaxws</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 173 | <version>${cxf.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 174 | </dependency> |
| 175 | <dependency> |
| 176 | <groupId>org.apache.cxf</groupId> |
| 177 | <artifactId>cxf-spring-boot-starter-jaxrs</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 178 | <version>${cxf.version}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 179 | </dependency> |
| 180 | <dependency> |
| 181 | <groupId>org.apache.cxf</groupId> |
| 182 | <artifactId>cxf-rt-rs-service-description-swagger</artifactId> |
Smokowski, Steve (ss835w) | ffa1f2e | 2018-08-07 08:37:49 -0400 | [diff] [blame] | 183 | <version>${cxf.version}</version> |
Smokowski, Steve (ss835w) | 1db2da2 | 2018-08-08 16:03:53 -0400 | [diff] [blame] | 184 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 185 | <dependency> |
| 186 | <groupId>com.h2database</groupId> |
| 187 | <artifactId>h2</artifactId> |
| 188 | <scope>test</scope> |
| 189 | </dependency> |
| 190 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 191 | <groupId>org.mockito</groupId> |
| 192 | <artifactId>mockito-core</artifactId> |
| 193 | <version>1.10.19</version> |
| 194 | <scope>test</scope> |
| 195 | </dependency> |
| 196 | <dependency> |
| 197 | <groupId>com.fasterxml.uuid</groupId> |
| 198 | <artifactId>java-uuid-generator</artifactId> |
| 199 | </dependency> |
| 200 | <dependency> |
| 201 | <groupId>org.codehaus.groovy</groupId> |
| 202 | <artifactId>groovy-all</artifactId> |
| 203 | </dependency> |
| 204 | <dependency> |
| 205 | <groupId>org.apache.commons</groupId> |
| 206 | <artifactId>commons-lang3</artifactId> |
| 207 | <version>3.4</version> |
| 208 | </dependency> |
| 209 | <dependency> |
| 210 | <groupId>org.onap.so</groupId> |
| 211 | <artifactId>MSOCoreBPMN</artifactId> |
| 212 | <version>${project.version}</version> |
| 213 | </dependency> |
| 214 | <dependency> |
| 215 | <groupId>org.onap.so</groupId> |
eeginux | 88c47a2 | 2019-04-03 14:28:09 +0000 | [diff] [blame] | 216 | <artifactId>MSOCoreBPMN</artifactId> |
| 217 | <version>${project.version}</version> |
| 218 | <classifier>tests</classifier> |
| 219 | <scope>test</scope> |
| 220 | </dependency> |
| 221 | <dependency> |
| 222 | <groupId>org.onap.so</groupId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 223 | <artifactId>MSOCommonBPMN</artifactId> |
| 224 | <version>${project.version}</version> |
| 225 | </dependency> |
| 226 | <dependency> |
| 227 | <groupId>org.onap.so</groupId> |
eeginux | 88c47a2 | 2019-04-03 14:28:09 +0000 | [diff] [blame] | 228 | <artifactId>MSOCommonBPMN</artifactId> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 229 | <version>${project.version}</version> |
| 230 | <classifier>tests</classifier> |
| 231 | <scope>test</scope> |
| 232 | </dependency> |
| 233 | <dependency> |
eeginux | 88c47a2 | 2019-04-03 14:28:09 +0000 | [diff] [blame] | 234 | <groupId>org.onap.so</groupId> |
| 235 | <artifactId>so-bpmn-building-blocks</artifactId> |
| 236 | <version>${project.version}</version> |
| 237 | <scope>test</scope> |
| 238 | </dependency> |
| 239 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 240 | <groupId>javax.ws.rs</groupId> |
| 241 | <artifactId>javax.ws.rs-api</artifactId> |
Benjamin, Max (mb388a) | e4f7e56 | 2018-08-11 00:17:59 -0400 | [diff] [blame] | 242 | <version>${jax.ws.rs}</version> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 243 | </dependency> |
| 244 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 245 | <groupId>org.camunda.spin</groupId> |
| 246 | <artifactId>camunda-spin-core</artifactId> |
| 247 | <scope>test</scope> |
| 248 | </dependency> |
| 249 | <dependency> |
| 250 | <groupId>org.camunda.spin</groupId> |
| 251 | <artifactId>camunda-spin-dataformat-all</artifactId> |
| 252 | <scope>test</scope> |
| 253 | </dependency> |
| 254 | <dependency> |
| 255 | <artifactId>camunda-spin-dataformat-all</artifactId> |
| 256 | <groupId>org.camunda.spin</groupId> |
| 257 | <scope>test</scope> |
| 258 | </dependency> |
| 259 | <dependency> |
| 260 | <groupId>org.camunda.bpm</groupId> |
| 261 | <artifactId>camunda-engine-plugin-spin</artifactId> |
| 262 | </dependency> |
| 263 | |
| 264 | <dependency> |
| 265 | <groupId>org.camunda.bpm</groupId> |
| 266 | <artifactId>camunda-engine-plugin-connect</artifactId> |
| 267 | <scope>test</scope> |
| 268 | </dependency> |
| 269 | <dependency> |
eeginux | 88c47a2 | 2019-04-03 14:28:09 +0000 | [diff] [blame] | 270 | <groupId>org.camunda.bpm.extension</groupId> |
| 271 | <artifactId>camunda-bpm-assert</artifactId> |
| 272 | <version>${camunda.bpm.assert.version}</version> |
| 273 | <scope>test</scope> |
| 274 | </dependency> |
| 275 | <dependency> |
| 276 | <groupId>org.assertj</groupId> |
| 277 | <artifactId>assertj-core</artifactId> |
| 278 | <version>${assertj.core.version}</version> |
| 279 | <scope>test</scope> |
| 280 | </dependency> |
| 281 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 282 | <groupId>javax.annotation</groupId> |
| 283 | <artifactId>javax.annotation-api</artifactId> |
| 284 | <version>1.3</version> |
| 285 | </dependency> |
Smokowski, Steve (ss835w) | 1db2da2 | 2018-08-08 16:03:53 -0400 | [diff] [blame] | 286 | <dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 287 | <groupId>org.springframework.boot</groupId> |
| 288 | <artifactId>spring-boot-configuration-processor</artifactId> |
| 289 | <optional>true</optional> |
| 290 | </dependency> |
| 291 | <dependency> |
| 292 | <groupId>ch.qos.logback</groupId> |
| 293 | <artifactId>logback-classic</artifactId> |
| 294 | </dependency> |
| 295 | <dependency> |
| 296 | <groupId>ch.qos.logback</groupId> |
| 297 | <artifactId>logback-core</artifactId> |
| 298 | </dependency> |
| 299 | <dependency> |
| 300 | <groupId>org.slf4j</groupId> |
| 301 | <artifactId>slf4j-api</artifactId> |
Smokowski, Steve (ss835w) | 1db2da2 | 2018-08-08 16:03:53 -0400 | [diff] [blame] | 302 | </dependency> |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 303 | <dependency> |
| 304 | <groupId>org.mariadb.jdbc</groupId> |
| 305 | <artifactId>mariadb-java-client</artifactId> |
| 306 | </dependency> |
| 307 | <dependency> |
Smokowski, Steve (ss835w) | 1db2da2 | 2018-08-08 16:03:53 -0400 | [diff] [blame] | 308 | <groupId>ch.vorburger.mariaDB4j</groupId> |
| 309 | <artifactId>mariaDB4j</artifactId> |
| 310 | <version>2.2.3</version> |
| 311 | <scope>test</scope> |
| 312 | </dependency> |
eeginux | 88c47a2 | 2019-04-03 14:28:09 +0000 | [diff] [blame] | 313 | <dependency> |
| 314 | <groupId>io.grpc</groupId> |
| 315 | <artifactId>grpc-testing</artifactId> |
| 316 | <version>${grpc.version}</version> |
| 317 | <scope>test</scope> |
| 318 | </dependency> |
| 319 | |
Benjamin, Max (mb388a) | 5a6a6de | 2018-07-30 15:56:09 -0400 | [diff] [blame] | 320 | </dependencies> |
| 321 | </project> |