c-tablegen-r2dbc-demo
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.yujiaao</groupId> <artifactId>c-tablegen-r2dbc-demo</artifactId> <version>1.15.12.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> <artifactId>c-tools-parent</artifactId> <groupId>com.github.yujiaao</groupId> <version>1.15.12.4</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>c-tablegen-r2dbc-demo</artifactId> <name>c-tablegen-r2dbc-demo</name> <packaging>jar</packaging> <description>c-tablegen-r2dbc-demo</description> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>yujiaao</id> <name>Wanxiang Xing</name> <!-- 必选:开发者姓名 --> <email>yujiaao@msn.com</email> <roles> <role>Developer</role> <!-- 可选:角色描述 --> </roles> </developer> </developers> <properties> <maven.deploy.skip>true</maven.deploy.skip> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-webflux</artifactId> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> <version>8.0.30</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>c-r2dbc</artifactId> <version>${project.parent.version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.hibernate.validator/hibernate-validator --> <dependency> <groupId>org.hibernate.validator</groupId> <artifactId>hibernate-validator</artifactId> </dependency> <!-- https://mvnrepository.com/artifact/io.swagger/swagger-annotations --> <dependency> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-annotations</artifactId> <version>2.2.8</version> </dependency> <dependency> <groupId>org.mariadb</groupId> <artifactId>r2dbc-mariadb</artifactId> <version>1.1.3</version> </dependency> <dependency> <groupId>io.r2dbc</groupId> <artifactId>r2dbc-pool</artifactId> <version>1.0.0.RELEASE</version> <!-- <version>0.9.0.RELEASE</version>--> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>2.14.0</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>com.github.yujiaao</groupId> <artifactId>tablegen-maven-plugin</artifactId> <version>${project.version}</version> <configuration> <propPath>${project.basedir}/tablegen.properties</propPath> </configuration> </plugin> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>2.5.3</version> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>c-tools-bom</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> </project>