bus-vortex
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.miaixz</groupId> <artifactId>bus-vortex</artifactId> <version>8.2.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ The MIT License (MIT) ~ ~ ~ ~ Copyright (c) 2015-2025 miaixz.org and other contributors. ~ ~ ~ ~ Permission is hereby granted, free of charge, to any person obtaining a copy ~ ~ of this software and associated documentation files (the "Software"), to deal ~ ~ in the Software without restriction, including without limitation the rights ~ ~ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell ~ ~ copies of the Software, and to permit persons to whom the Software is ~ ~ furnished to do so, subject to the following conditions: ~ ~ ~ ~ The above copyright notice and this permission notice shall be included in ~ ~ all copies or substantial portions of the Software. ~ ~ ~ ~ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR ~ ~ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, ~ ~ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE ~ ~ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER ~ ~ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, ~ ~ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN ~ ~ THE SOFTWARE. ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ --> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <groupId>org.miaixz</groupId> <artifactId>bus-vortex</artifactId> <version>8.2.3</version> <name>${project.artifactId}</name> <description>Bus Vortex</description> <url>https://github.com/818000/bus</url> <inceptionYear>2015</inceptionYear> <licenses> <license> <name>The MIT License (MIT)</name> <url>https://github.com/818000/bus/blob/main/LICENSE</url> </license> </licenses> <developers> <developer> <id>818000</id> <name>Kimi Liu</name> <email>839536@gmail.com</email> <organization>Miaixz</organization> <organizationUrl>https://www.miaixz.org</organizationUrl> <roles> <role>Owner</role> <role>Committer</role> </roles> </developer> <developer> <id>justubborn</id> <name>Justubborn</name> <email>wubenhui@gmail.com</email> <organization>Miaixz</organization> <organizationUrl>https://www.miaixz.org</organizationUrl> <roles> <role>Committer</role> </roles> </developer> </developers> <scm> <connection>scm:git@github.com:818000/bus.git</connection> <developerConnection>scm:git@github.com:818000/bus.git</developerConnection> <url>git@github.com:818000/bus.git</url> </scm> <issueManagement> <system>Github Issue</system> <url>https://github.com/818000/bus/issues</url> </issueManagement> <properties> <jakarta.servlet.version>6.1.0</jakarta.servlet.version> <spring.boot.version>4.0.0-M1</spring.boot.version> <guava.version>33.4.8-jre</guava.version> <bus.version>8.2.3</bus.version> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <lombok.version>1.18.38</lombok.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <dependencies> <dependency> <groupId>org.miaixz</groupId> <artifactId>bus-crypto</artifactId> <version>${bus.version}</version> </dependency> <dependency> <groupId>org.miaixz</groupId> <artifactId>bus-extra</artifactId> <version>${bus.version}</version> </dependency> <dependency> <groupId>org.miaixz</groupId> <artifactId>bus-http</artifactId> <version>${bus.version}</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId> <version>${jakarta.servlet.version}</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> <version>${spring.boot.version}</version> <exclusions> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-json</artifactId> </exclusion> <exclusion> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-tomcat</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jdk8</artifactId> </exclusion> <exclusion> <groupId>com.fasterxml.jackson.datatype</groupId> <artifactId>jackson-datatype-jsr310</artifactId> </exclusion> </exclusions> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-webflux</artifactId> <version>${spring.boot.version}</version> <optional>true</optional> </dependency> </dependencies> </project>