IRC wrapper written in Java
Go to file
Polarian dcaf98d98b
Bumped slf4j-api version and changed maven repo
2023-01-12 00:10:48 +00:00
docs added documentation versioning 2022-03-10 09:11:40 +00:00
src/main/java/dev/polarian/ircj WIP event updating 2022-03-11 10:10:34 +00:00
.gitignore added basic docs and added new README 2022-03-06 11:43:41 +00:00
LICENSE Add LICENSE 2021-11-10 00:12:04 +00:00
README.md Updated README.md and removed README 2023-01-11 15:11:57 +00:00
mkdocs.yml added basic bot docs, contributing docs and also updated mkdocs.yml 2022-03-06 12:20:46 +00:00
pom.xml Bumped slf4j-api version and changed maven repo 2023-01-12 00:10:48 +00:00

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