bus-pager
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.miaixz</groupId> <artifactId>bus-pager</artifactId> <version>8.1.5</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-pager</artifactId> <version>8.1.5</version> <name>${project.artifactId}</name> <description>Bus Pager</description> <url>https://github.com/839128/bus</url> <inceptionYear>2015</inceptionYear> <licenses> <license> <name>The MIT License (MIT)</name> <url>https://github.com/839128/bus/blob/main/LICENSE</url> </license> </licenses> <developers> <developer> <id>839128</id> <name>Kimi Liu</name> <email>839536@gmail.com</email> <organization>Miaixz</organization> <organizationUrl>http://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>http://www.miaixz.org</organizationUrl> <roles> <role>Committer</role> </roles> </developer> </developers> <scm> <connection>scm:git@github.com:839128/bus.git</connection> <developerConnection>scm:git@github.com:839128/bus.git</developerConnection> <url>git@github.com:839128/bus.git</url> </scm> <issueManagement> <system>Github Issue</system> <url>https://github.com/839128/bus/issues</url> </issueManagement> <properties> <jsqlparser.version>5.0</jsqlparser.version> <hikaricp.version>5.1.0</hikaricp.version> <guava.version>33.3.0-jre</guava.version> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <druid.version>1.2.23</druid.version> <mybatis.version>3.5.16</mybatis.version> </properties> <dependencies> <dependency> <groupId>${project.groupId}</groupId> <artifactId>bus-crypto</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>${project.groupId}</groupId> <artifactId>bus-mapper</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.mybatis</groupId> <artifactId>mybatis</artifactId> <version>${mybatis.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>com.github.jsqlparser</groupId> <artifactId>jsqlparser</artifactId> <version>${jsqlparser.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>druid</artifactId> <version>${druid.version}</version> <optional>true</optional> </dependency> <dependency> <groupId>com.zaxxer</groupId> <artifactId>HikariCP</artifactId> <version>${hikaricp.version}</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> <optional>true</optional> </dependency> </dependencies> </project>