kg-ctl-quickstart
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.persistencelkg</groupId> <artifactId>kg-ctl-quickstart</artifactId> <version>1.0.3.RELEASE</version> </dependency>
<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>io.github.persistencelkg</groupId> <artifactId>kg-task-ctl</artifactId> <version>1.0.3.RELEASE</version> </parent> <artifactId>kg-ctl-quickstart</artifactId> <version>1.0.3.RELEASE</version> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <mybatis-spring-boot-starter.version>2.1.0</mybatis-spring-boot-starter.version> </properties> <dependencies> <dependency> <groupId>io.github.persistencelkg</groupId> <artifactId>kg-ctl-core</artifactId> <version>1.0.3.RELEASE</version> </dependency> <dependency> <groupId>com.xuxueli</groupId> <artifactId>xxl-job-core</artifactId> <version>2.4.0</version> </dependency> <dependency> <groupId>com.baomidou</groupId> <artifactId>dynamic-datasource-spring-boot-starter</artifactId> <version>3.4.0</version> </dependency> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <scope>runtime</scope> </dependency> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>${mybatis-spring-boot-starter.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!--springboot-test--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> </dependencies> </project>