Skip to content
Torben Hørup edited this page Jul 7, 2022 · 12 revisions

Maven

We no longer upload release jars to maven central, instead we refer to using jitpack.io : https://jitpack.io/#pircbotx/pircbotx

Add the following to the <dependencies> section in your pom.xml. [Click here for Ivy, Gradle, and other configs]

<dependency>
    <groupId>com.github.pircbotx</groupId>
    <artifactId>pircbotx</artifactId>
    <version>v2.3</version>
</dependency>

See Logging section below

JARs

PircBotX depends on the following libraries. You need to download the latest version from their site:

Logging

PircBotX uses Slf4j, an abstract logging framework allowing users to plug in their own desired logging framework. You must provide one in your project.

Beginners are recommended to use LogBack or slf4j-simple-x.x.x.jar

Please read the Slf4j site for more details and how to use other frameworks like log4j or Apache Commons