mybatis-table-modify-mysql-boot-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cn.bootx</groupId> <artifactId>mybatis-table-modify-mysql-boot-starter</artifactId> <version>1.5.4.beta1</version> </dependency>
<?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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>cn.bootx</groupId> <artifactId>mybatis-table-modify</artifactId> <version>1.5.4.beta1</version> </parent> <artifactId>mybatis-table-modify-mysql-boot-starter</artifactId> <dependencies> <!-- mysql --> <dependency> <groupId>cn.bootx</groupId> <artifactId>mybatis-table-modify-mysql</artifactId> <version>${mybatis-table-modify.version}</version> </dependency> <!-- spring boot自动配置 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-autoconfigure</artifactId> <version>${spring-boot.version}</version> <scope>provided</scope> </dependency> <!-- spring boot配置处理器 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <version>${spring-boot.version}</version> <scope>provided</scope> </dependency> <!-- 事务 --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-tx</artifactId> <version>${spring.version}</version> <scope>provided</scope> </dependency> </dependencies> </project>