<?xml version="1.0" encoding="UTF-8"?>
<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">
	
	<parent>
		<groupId>com.lc.ibps.provider</groupId>
		<artifactId>ibps-provider-root</artifactId>
		<version>4.0.1-LC.SAAS-RELEASE</version>
		<relativePath>../../pom.xml</relativePath>
	</parent>

	<modelVersion>4.0.0</modelVersion>
	<artifactId>ibps-provider-bpmn</artifactId>

	<properties>
		<jboss-logging.version>3.3.0.Final</jboss-logging.version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>org.jboss.logging</groupId>
			<artifactId>jboss-logging</artifactId>
			<version>${jboss-logging.version}</version>
		</dependency>
		
		<dependency>
			<groupId>org.springframework.boot</groupId>
        	<artifactId>spring-boot-starter-log4j2</artifactId>
		</dependency>
		
		<dependency>
			<groupId>com.lc.ibps.cloud</groupId>
			<artifactId>ibps-basic-provider</artifactId>
		</dependency>
        <dependency>
			<groupId>com.lc.ibps.cloud</groupId>
			<artifactId>ibps-basic-monitor</artifactId>
		</dependency>
        <dependency>
			<groupId>com.lc.ibps.cloud</groupId>
			<artifactId>ibps-basic-validator</artifactId>
        </dependency>
        <dependency>
			<groupId>com.lc.ibps.cloud</groupId>
			<artifactId>ibps-basic-swagger</artifactId>
		</dependency>
		<dependency>
			<groupId>com.lc.ibps.provider.base</groupId>
			<artifactId>ibps-provider-bpmn-api</artifactId>
		</dependency>

		<dependency>
			<groupId>com.lc.ibps.base</groupId>
			<artifactId>ibps-base-db</artifactId>
		</dependency>
		<dependency>
			<groupId>com.lc.ibps.base</groupId>
			<artifactId>ibps-base-service</artifactId>
		</dependency>
		<dependency>
			<groupId>com.lc.ibps.bpmn</groupId>
			<artifactId>ibps-bpmn-biz</artifactId>
		</dependency>
		
		<dependency>
			<groupId>com.lc.ibps.message</groupId>
			<artifactId>ibps-message-producer</artifactId>
		</dependency>
		<dependency>
			<groupId>com.lc.ibps.cloud</groupId>
			<artifactId>ibps-oauth-client2</artifactId>
		</dependency>
		
		<!-- 京东多线程开发工具 -->
		<!-- 解决任意的多线程并行、串行、阻塞、依赖、回调的并行框架，可以任意组合各线程的执行顺序，带全链路执行结果回调。 -->
		<dependency>
		    <groupId>com.jd.platform</groupId>
		    <artifactId>asyncTool</artifactId>
		</dependency>
		
		<!-- https://mvnrepository.com/artifact/net.sf.ezmorph/ezmorph -->
		<dependency>
			<groupId>net.sf.ezmorph</groupId>
			<artifactId>ezmorph</artifactId>
		</dependency>
		<!-- https://mvnrepository.com/artifact/net.sf.morph/morph -->
		<dependency>
			<groupId>net.sf.morph</groupId>
			<artifactId>morph</artifactId>
		</dependency>
		
		<dependency>
		     <groupId>com.alibaba</groupId>
		     <artifactId>druid</artifactId>
		     <optional>true</optional>
		</dependency>
		<dependency>
			<groupId>mysql</groupId>
			<artifactId>mysql-connector-java</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
		    <groupId>com.microsoft.sqlserver</groupId>
		    <artifactId>mssql-jdbc</artifactId>
		    <optional>true</optional>
		</dependency>
		<dependency>
			<groupId>com.oracle</groupId>
			<artifactId>oracledriver</artifactId>
			<optional>true</optional>
		</dependency>
		<dependency>
		  <groupId>org.postgresql</groupId>
		  <artifactId>postgresql</artifactId>
		  <optional>true</optional>
		</dependency>
		
		<dependency>
		    <groupId>javax.servlet</groupId>
			<artifactId>javax.servlet-api</artifactId>
		</dependency>
		<dependency>
			<groupId>javax</groupId>
			<artifactId>javaee-api</artifactId>
		</dependency>
		
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

</project>