flandre-bot-framework
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.lemonjuice95</groupId> <artifactId>flandre-bot-framework</artifactId> <version>0.10.2</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <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"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.github.lemonjuice95</groupId> <artifactId>flandre-bot-framework</artifactId> <version>0.10.2</version> <name>Flandre Bot Framework</name> <description>A qq bot framework on Java 21, Using OneBot 11 protocol, Connect through WebSocket</description> <url>https://github.com/LemonJuice95/flandre-bot-framework</url> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/license/MIT</url> </license> </licenses> <developers> <developer> <id>lemonjuice95</id> <name>LemonJuice95</name> <email>1582017385@qq.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/LemonJuice95/flandre-bot-framework</connection> <developerConnection>scm:git:ssh://github.com/LemonJuice95/flandre-bot-framework</developerConnection> <url>https://github.com/LemonJuice95/flandre-bot-framework</url> </scm> <dependencies> <dependency> <groupId>org.json</groupId> <artifactId>json</artifactId> <version>20250517</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <version>2.25.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <version>2.25.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>javax.websocket</groupId> <artifactId>javax.websocket-api</artifactId> <version>1.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.glassfish.tyrus.bundles</groupId> <artifactId>tyrus-standalone-client</artifactId> <version>1.13</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.glassfish.tyrus</groupId> <artifactId>tyrus-server</artifactId> <version>1.13</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.glassfish.tyrus</groupId> <artifactId>tyrus-container-grizzly-server</artifactId> <version>1.13</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.reflections</groupId> <artifactId>reflections</artifactId> <version>0.10.2</version> <scope>runtime</scope> <exclusions> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jul-to-slf4j</artifactId> <version>2.0.17</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j2-impl</artifactId> <version>2.25.1</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jline</groupId> <artifactId>jline</artifactId> <version>3.30.6</version> <scope>runtime</scope> </dependency> </dependencies> </project>