mug-hotBase

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.

circle-exclamation

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

chevron-rightGradle Kotlinhashtag
// Replace (version) with the version you want to use.
implementation "net.codersky.jsky:base:(version)"
chevron-rightGradle Groovyhashtag
// Replace (version) with the version you want to use.
implementation "net.codersky.jsky:base:(version)"
chevron-rightMavenhashtag
<!-- Replace (version) with the version you want to use. -->
<dependency>
  <groupId>net.codersky.jsky</groupId>
  <artifactId>base</artifactId>
  <version>(version)</version>
</dependency>

Last updated