helio-starter-crud
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cc.uncarbon.framework</groupId> <artifactId>helio-starter-crud</artifactId> <version>2.3.1</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> <packaging>jar</packaging> <parent> <artifactId>helio-starters</artifactId> <groupId>cc.uncarbon.framework</groupId> <version>2.3.1</version><!-- BATCH REPLACEMENT MARK --> <relativePath>../pom.xml</relativePath> </parent> <artifactId>helio-starter-crud</artifactId> <properties> </properties> <dependencies> <!-- 脚手架starter --> <dependency> <groupId>cc.uncarbon.framework</groupId> <artifactId>helio-core</artifactId> </dependency> <!-- 这里写其他第三方依赖 --> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-spring-boot3-starter</artifactId> </dependency> <dependency> <groupId>com.mysql</groupId> <artifactId>mysql-connector-j</artifactId> </dependency> <dependency> <groupId>org.postgresql</groupId> <artifactId>postgresql</artifactId> </dependency> <dependency> <groupId>com.oracle.database.jdbc</groupId> <artifactId>ojdbc8</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>mssql-jdbc</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.baomidou</groupId> <artifactId>dynamic-datasource-spring-boot-starter</artifactId> <optional>true</optional> </dependency> </dependencies> </project>