bot-qqpd-java
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.kloping</groupId> <artifactId>bot-qqpd-java</artifactId> <version>1.5.2-R3</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.kloping</groupId> <artifactId>bot-qqpd-java</artifactId> <version>1.5.2-R3</version> <packaging>jar</packaging> <name>bot-qqpd-java</name> <url>https://github.com/kloping/qqpd-bot-java</url> <description>bot-qqpd-java</description> <licenses> <license> <name>GNU AFFERO GENERAL PUBLIC LICENSE Version 3</name> <url>https://raw.githubusercontent.com/kloping/qqpd-bot-java/master/LICENSE</url> <distribution>repo</distribution> <comments>--</comments> </license> </licenses> <scm> <connection>scm:git:git://github.com/kloping/qqpd-bot-java.git</connection> <developerConnection>scm:git:ssh://github.com/kloping/qqpd-bot-java</developerConnection> <url>https://github.com/kloping/qqpd-bot-java</url> </scm> <developers> <developer> <name>kloping</name> <id>kloping</id> <email>hrs3474006766@outlook.com</email> <roles> <role>Developer</role> </roles> <timezone>+8</timezone> </developer> </developers> <properties> <java.version>8</java.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>io.github.kloping</groupId> <artifactId>SpringTool</artifactId> <version>0.6.3-R4</version> <exclusions> <exclusion> <groupId>io.github.Kloping</groupId> <artifactId>JvUtils</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.github.kloping</groupId> <artifactId>JvUtils</artifactId> <version>0.4.9-Beta1</version> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.java-websocket</groupId> <artifactId>Java-WebSocket</artifactId> <version>1.6.0</version> </dependency> <!-- Maven --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-nop</artifactId> <version>2.0.12</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.10.1</version> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>1.18.26</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.15.4</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> <!-- Bouncy Castle for Ed25519 support q.qq校验 --> <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcpkix-jdk18on --> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk18on</artifactId> <version>1.79</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <configuration> <show>package</show> <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-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>8</source> <target>8</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.5</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> <!--非手动签名配置--> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> </profile> </profiles> </project>