Base

The base module of JSky, which adds most features

This module is required in order to use any other module, as it provides interfaces and utility classes that are used on them. It uses no dependencies, so you don't need to exclude any.

Once you have added the repository, you can add the base module to your project.

Gradle Kotlin
// Replace (version) with the version you want to use.
implementation "net.codersky.jsky:base:(version)"
Gradle Groovy
// Replace (version) with the version you want to use.
implementation "net.codersky.jsky:base:(version)"
Maven
<!-- Replace (version) with the version you want to use. -->
<dependency>
  <groupId>net.codersky.jsky</groupId>
  <artifactId>base</artifactId>
  <version>(version)</version>
</dependency>

Last updated

Was this helpful?