1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?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>
- <artifactId>liteflow</artifactId>
- <groupId>com.yomahub</groupId>
- <version>${revision}</version>
- <relativePath>../../pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>liteflow-rule-sql</artifactId>
- <dependencies>
- <dependency>
- <groupId>com.yomahub</groupId>
- <artifactId>liteflow-core</artifactId>
- <version>${revision}</version>
- <optional>true</optional>
- <scope>provided</scope>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-crypto</artifactId>
- </dependency>
- <!-- 苞米豆动态数据源 -->
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>dynamic-datasource-spring</artifactId>
- <version>${dynamic-datasource.version}</version>
- <optional>true</optional>
- <scope>provided</scope>
- </dependency>
- <!--Sharding JDBC -->
- <dependency>
- <groupId>org.apache.shardingsphere</groupId>
- <artifactId>sharding-jdbc-core</artifactId>
- <version>${sharding-jdbc.version}</version>
- <optional>true</optional>
- <scope>provided</scope>
- </dependency>
- </dependencies>
- </project>
|