IRC wrapper written in Java
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Go to file
Polarian dcaf98d98b
Bumped slf4j-api version and changed maven repo
2 months ago
docs added documentation versioning 1 year ago
src/main/java/dev/polarian/ircj WIP event updating 1 year ago
.gitignore added basic docs and added new README 1 year ago
LICENSE Add LICENSE 1 year ago
README.md Updated README.md and removed README 2 months ago
mkdocs.yml added basic bot docs, contributing docs and also updated mkdocs.yml 1 year ago
pom.xml Bumped slf4j-api version and changed maven repo 2 months ago

README.md

IRCJ (Java IRC Wrapper)

IRCJ is an IRC wrapper written in Java. It provides a wrapper which is still maintained and supported, unlike many other Java wrappers which have been abandoned or are no longer actively developed. Although the IRC protocol rarely changes, active development and optimisation should continue. I am to provide a fully functional and efficient library.

Maven

Replace VERSION with the latest version (see badge at top of repo)

<repositories>
    <repository>
        <id>polargit</id>
        <url>https://git.polarian.dev/api/packages/Polarian/maven</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groudId>dev.polarian</groudId>
        <artifactId>ircj</artifactId>
        <version>VERSION</version>
    </dependency>
</dependencies>

Gradle

Replace VERSION with the latest version (see badge at top of repo)

repositories {
    maven {
        url 'https://git.polarian.dev/api/packages/Polarian/maven'
    }
}
dependencies {
    implementation 'dev.polarian:ircj:VERSION'
}

Issues/Bugs

If you encounter any issues or bugs (or would like to provide suggestions), please open an issue and I will be happy to help, or email me at polarian@polarian.dev