| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?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>tr-plugins</artifactId>
- <groupId>cn.tr</groupId>
- <version>${revision}</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <version>${revision}</version>
- <artifactId>tr-spring-boot-starter-plugin-mp-enhance-actable</artifactId>
- <description>和mybatis结合实现自动建表</description>
- <dependencies>
- <dependency>
- <groupId>com.gitee.sunchenbin.mybatis.actable</groupId>
- <artifactId>mybatis-enhance-actable</artifactId>
- <version>1.5.0.RELEASE</version>
- <exclusions>
- <exclusion>
- <artifactId>mybatis-plus-annotation</artifactId>
- <groupId>com.baomidou</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>cn.tr</groupId>
- <artifactId>tr-spring-boot-starter-plugin-web</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.tr</groupId>
- <artifactId>tr-spring-boot-starter-plugin-mybatis</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.tr</groupId>
- <artifactId>tr-spring-boot-starter-plugin-test</artifactId>
- <scope>test</scope>
- <exclusions>
- <exclusion>
- <groupId>org.junit.vintage</groupId>
- <artifactId>junit-vintage-engine</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- </dependencies>
- </project>
|