cloud-box
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.wj0410.cloud-box</groupId> <artifactId>cloud-box</artifactId> <version>2024.2</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> <groupId>io.github.wj0410.cloud-box</groupId> <artifactId>cloud-box</artifactId> <packaging>pom</packaging> <version>2024.2</version> <modules> <module>cloud-box-tools</module> <module>cloud-box-rest-response-helper</module> <module>cloud-box-redis-helper</module> <module>cloud-box-easycrud-mp</module> <module>cloud-box-easycrud-mongo</module> </modules> <name>cloud-box</name> <url>https://github.com/wj0410/cloud-box</url> <description>cloud-box 开发工具集合</description> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <lombok.version>1.18.26</lombok.version> <slf4j-api.version>1.7.32</slf4j-api.version> <spring-boot.version>2.2.8.RELEASE</spring-boot.version> <fastjson2.version>2.0.39</fastjson2.version> <hutool.version>5.8.25</hutool.version> <commons-lang.version>2.6</commons-lang.version> <commons-lang3.version>3.12.0</commons-lang3.version> <jjwt.version>0.9.1</jjwt.version> <commons.io.version>2.11.0</commons.io.version> <reactor-core.version>3.4.11</reactor-core.version> <transmittable-thread-local.version>2.14.3</transmittable-thread-local.version> <tomcat-embed.version>11.0.0-M15</tomcat-embed.version> <mybaits.plus.version>3.5.2</mybaits.plus.version> <commons-collections4.version>4.4</commons-collections4.version> <okhttp-util.version>0.8.1</okhttp-util.version> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>io.github.wj0410.cloud-box</groupId> <artifactId>cloud-box-tools</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.github.wj0410.cloud-box</groupId> <artifactId>cloud-box-rest-response-helper</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.github.wj0410.cloud-box</groupId> <artifactId>cloud-box-redis-helper</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.github.wj0410.cloud-box</groupId> <artifactId>cloud-box-easycrud-mp</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>io.github.wj0410.cloud-box</groupId> <artifactId>cloud-box-easycrud-mongo</artifactId> <version>${project.version}</version> </dependency> <!-- SpringBoot 依赖配置 --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>${spring-boot.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <version>${commons-lang3.version}</version> </dependency> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-core</artifactId> <version>${hutool.version}</version> </dependency> <dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-crypto</artifactId> <version>${hutool.version}</version> </dependency> <!-- JWT --> <dependency> <groupId>io.jsonwebtoken</groupId> <artifactId>jjwt</artifactId> <version>${jjwt.version}</version> </dependency> <!-- JSON 解析器和生成器 --> <dependency> <groupId>com.alibaba.fastjson2</groupId> <artifactId>fastjson2</artifactId> <version>${fastjson2.version}</version> </dependency> <dependency> <groupId>io.projectreactor</groupId> <artifactId>reactor-core</artifactId> <version>${reactor-core.version}</version> <!-- 版本号根据你的实际需求进行调整 --> </dependency> <!-- 线程传递值 --> <dependency> <groupId>com.alibaba</groupId> <artifactId>transmittable-thread-local</artifactId> <version>${transmittable-thread-local.version}</version> </dependency> <!-- io常用工具类 --> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons.io.version}</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j-api.version}</version> </dependency> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-core</artifactId> <version>${tomcat-embed.version}</version> </dependency> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-annotation</artifactId> <version>${mybaits.plus.version}</version> </dependency> <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-extension</artifactId> <version>${mybaits.plus.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-collections4</artifactId> <version>${commons-collections4.version}</version> </dependency> <dependency> <groupId>io.github.admin4j</groupId> <artifactId>http</artifactId> <exclusions> <exclusion> <groupId>com.alibaba.fastjson2</groupId> <artifactId>fastjson2</artifactId> </exclusion> </exclusions> <version>${okhttp-util.version}</version> </dependency> </dependencies> </dependencyManagement> <!--项目在github或其它托管平台的地址--> <scm> <connection>https://github.com/wj0410/CloudBox.git</connection> <developerConnection>scm:git:ssh://git@github.com:wj0410/CloudBox.git</developerConnection> <url>https://github.com/wj0410/CloudBox</url> </scm> <!--开源协议...--> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>wangjie</id> <name>wangjie</name> <email>89757316@qq.com</email> <roles> <role>Project Manager</role> <role>Architect</role> </roles> <timezone>+8</timezone> </developer> </developers> <profiles> <profile> <!--注意,此id必须与setting.xml中指定的一致,不要自作聪明改它名字--> <id>release</id> <activation> <activeByDefault>true</activeByDefault> </activation> <build> <!--发布到中央SNAPSHOT仓库插件--> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>2.5.3</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <useReleaseProfile>false</useReleaseProfile> <releaseProfiles>release</releaseProfiles> <goals>deploy</goals> </configuration> </plugin> <!--生成源码插件--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!--生成API文档插件--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!--gpg插件--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!--跳过运行测试--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <!--注意,此id必须与setting.xml中指定的一致--> <id>release</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>release</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </profile> <profile> <!--注意,此id必须与setting.xml中指定的一致,不要自作聪明改它名字--> <id>snapshots</id> <activation> <activeByDefault>false</activeByDefault> </activation> <build> <!--发布到中央SNAPSHOT仓库插件--> <plugins> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.6.8</version> <extensions>true</extensions> <configuration> <serverId>snapshots</serverId> <nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <!--生成源码插件--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.4</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <!--生成API文档插件--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.10.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!--gpg插件--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.0.1</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <!--跳过运行测试--> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>3.0.0</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> </plugins> </build> <distributionManagement> <snapshotRepository> <!--注意,此id必须与setting.xml中指定的一致--> <id>snapshots</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>snapshots</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </profile> </profiles> </project>