xc-spring-boot-starter-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-parent</artifactId> <version>0.0.2</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>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>3.5.4</version> <relativePath/> </parent> <groupId>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-parent</artifactId> <version>0.0.2</version> <packaging>pom</packaging> <name>${project.artifactId}</name> <url>https://github.com/xiaochenxt</url> <description>xc项目pom</description> <developers> <developer> <id>dc2024</id> <name>小郴</name> <email>876975281@qq.com</email> </developer> </developers> <distributionManagement> <repository> <id>ossrh</id> <name>Nexus Release Repository</name> <url>https://ossrh-staging-api.central.sonatype.com/service/local/</url> </repository> <snapshotRepository> <id>central</id> <url>https://central.sonatype.com/repository/maven-snapshots/</url> </snapshotRepository> </distributionManagement> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>actable</distribution> </license> </licenses> <scm> <url>https://github.com/xiaochenxt</url> </scm> <properties> <java.version>24</java.version> <maven.compiler.source>${java.version}</maven.compiler.source> <maven.compiler.target>${java.version}</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <xc.version>0.0.2</xc.version> <querydsl.version>5.1.0</querydsl.version> <redisson.version>3.50.0</redisson.version> <mapstruct.version>1.6.3</mapstruct.version> <protostuff.version>1.8.0</protostuff.version> <spring-ai.version>1.0.0</spring-ai.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-core</artifactId> <version>${xc.version}</version> </dependency> <dependency> <groupId>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-cache</artifactId> <version>${xc.version}</version> </dependency> <dependency> <groupId>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-id-generator</artifactId> <version>${xc.version}</version> </dependency> <dependency> <groupId>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-ip</artifactId> <version>${xc.version}</version> </dependency> <dependency> <groupId>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-jpa</artifactId> <version>${xc.version}</version> </dependency> <dependency> <groupId>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-lock</artifactId> <version>${xc.version}</version> </dependency> <dependency> <groupId>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-message</artifactId> <version>${xc.version}</version> </dependency> <dependency> <groupId>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-ratelimiter</artifactId> <version>${xc.version}</version> </dependency> <dependency> <groupId>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-security</artifactId> <version>${xc.version}</version> </dependency> <dependency> <groupId>io.github.xiaochenxt</groupId> <artifactId>xc-spring-boot-starter-websocket</artifactId> <version>${xc.version}</version> </dependency> <dependency> <groupId>io.protostuff</groupId> <artifactId>protostuff-core</artifactId> <version>${protostuff.version}</version> </dependency> <dependency> <groupId>io.protostuff</groupId> <artifactId>protostuff-runtime</artifactId> <version>${protostuff.version}</version> </dependency> <dependency> <groupId>com.google.zxing</groupId> <artifactId>zxing-parent</artifactId> <version>3.5.3</version> <type>pom</type> <scope>import</scope> </dependency> <!--querydsl查询支持,跟JPA搭配使用 --> <dependency> <groupId>com.querydsl</groupId> <artifactId>querydsl-jpa</artifactId> <classifier>jakarta</classifier> <version>${querydsl.version}</version> </dependency> <dependency> <groupId>com.querydsl</groupId> <artifactId>querydsl-sql</artifactId> <version>${querydsl.version}</version> </dependency> <dependency> <groupId>com.querydsl</groupId> <artifactId>querydsl-apt</artifactId> <classifier>jakarta</classifier> <version>${querydsl.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>4.5.0</version> </dependency> <dependency> <groupId>com.github.whvcse</groupId> <artifactId>easy-captcha</artifactId> <version>1.6.2</version> </dependency> <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-impl</artifactId> <version>4.0.5</version> </dependency> <dependency> <groupId>org.redisson</groupId> <artifactId>redisson</artifactId> <version>${redisson.version}</version> </dependency> <dependency> <groupId>io.fusionauth</groupId> <artifactId>fusionauth-jwt</artifactId> <version>5.3.3</version> </dependency> <dependency> <groupId>org.lionsoul</groupId> <artifactId>ip2region</artifactId> <version>2.7.0</version> </dependency> <dependency> <groupId>com.lmax</groupId> <artifactId>disruptor</artifactId> <version>4.0.0</version> </dependency> <dependency> <groupId>org.mybatis.spring.boot</groupId> <artifactId>mybatis-spring-boot-starter</artifactId> <version>3.0.5</version> </dependency> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct</artifactId> <version>${mapstruct.version}</version> </dependency> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct-processor</artifactId> <version>${mapstruct.version}</version> </dependency> <dependency> <groupId>org.springframework.ai</groupId> <artifactId>spring-ai-bom</artifactId> <version>${spring-ai.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.14.0</version> <configuration> <parameters>true</parameters> <proc>full</proc> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> <waitUntil>published</waitUntil> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <configuration> <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable> <doclint>none</doclint> </configuration> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.8</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>