dc-spring-boot-starter-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.dengchen2020</groupId>
<artifactId>dc-spring-boot-starter-core</artifactId>
<version>0.4.61</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.dengchen2020</groupId>
<artifactId>dc-spring-boot-starter-parent</artifactId>
<version>0.4.61</version>
</parent>
<artifactId>dc-spring-boot-starter-core</artifactId>
<packaging>jar</packaging>
<name>${project.artifactId}</name>
<url>https://github.com/xiaochenxt/dengchen2020</url>
<description>dc核心代码</description>
<developers>
<developer>
<id>dc2024</id>
<name>小郴</name>
<email>876975281@qq.com</email>
</developer>
</developers>
<scm>
<url>https://github.com/xiaochenxt/dengchen2020</url>
<connection>https://github.com/xiaochenxt/dengchen2020.git</connection>
<developerConnection>https://github.com/xiaochenxt/dengchen2020.git</developerConnection>
</scm>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aspectj</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-redis</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-amqp</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
</dependency>
<dependency>
<groupId>com.github.ben-manes.caffeine</groupId>
<artifactId>caffeine</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents.client5</groupId>
<artifactId>httpclient5</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-restclient</artifactId>
</dependency>
<dependency>
<groupId>io.github.dengchen2020</groupId>
<artifactId>dc-utils</artifactId>
</dependency>
<dependency>
<groupId>io.github.dengchen2020</groupId>
<artifactId>jackson-ext</artifactId>
</dependency>
<dependency>
<groupId>io.github.dengchen2020</groupId>
<artifactId>dc-spring-boot-native-image</artifactId>
</dependency>
<!-- apache提供的对象池实现,https://commons.apache.org/proper/commons-pool/ -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
</dependency>
<dependency>
<groupId>io.github.openfeign.querydsl</groupId>
<artifactId>querydsl-core</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-web-server</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>jakarta.servlet</groupId>
<artifactId>jakarta.servlet-api</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>tools.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-jdbc</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
</project>