<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
<modelVersion>4.0.0</modelVersion>
|
<parent>
|
<groupId>com.qianwen</groupId>
|
<artifactId>smart-parent</artifactId>
|
<version>1.0.0</version>
|
</parent>
|
|
|
<artifactId>smart-core-boot</artifactId>
|
|
|
<dependencies>
|
<!-- Blade -->
|
<dependency>
|
<groupId>com.qianwen</groupId>
|
<artifactId>smart-core-context</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.qianwen</groupId>
|
<artifactId>smart-core-db</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.qianwen</groupId>
|
<artifactId>smart-core-secure</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
<!--
|
<dependency>
|
<groupId>com.qianwen</groupId>
|
<artifactId>smart-core-cloud</artifactId>
|
</dependency>
|
-->
|
<dependency>
|
<groupId>com.qianwen</groupId>
|
<artifactId>smart-starter-cache</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.qianwen</groupId>
|
<artifactId>smart-starter-redis</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.qianwen</groupId>
|
<artifactId>smart-starter-log</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>com.qianwen</groupId>
|
<artifactId>smart-starter-mybatis</artifactId>
|
<version>1.0.0</version>
|
</dependency>
|
<!-- Auto -->
|
<dependency>
|
<groupId>com.qianwen</groupId>
|
<artifactId>smart-core-auto</artifactId>
|
<scope>provided</scope>
|
<version>1.0.0</version>
|
</dependency>
|
<dependency>
|
<groupId>org.springframework.retry</groupId>
|
<artifactId>spring-retry</artifactId>
|
</dependency>
|
</dependencies>
|
|
</project>
|