IridiumSkyblock
  • 🌳Getting Started with IridiumSkyblock
  • FAQ
  • General
    • Features
    • Commands
    • Permissions
    • Placeholders
    • Materials
  • api
    • Dependencies
    • Examples
  • GUI
    • Items
    • Editing the GUI
  • Configurations
    • Overview
      • Blockvalues.yml
      • Boosters.yml
      • Configuration.yml
      • Inventories.yml
      • Missions.yml
      • Schematics.yml
      • Shop.yml
      • Upgrades.yml
      • Commands.yml
  • Links
    • Upload Your Log
    • Join Our Support Discord
Powered by GitBook
On this page
  • Gradle (Kotlin DSL)
  • Maven

Was this helpful?

  1. api

Dependencies

This page lists the dependencies required to build against IridiumSkyblock.

PreviousMaterialsNextExamples

Last updated 3 years ago

Was this helpful?

To access the IridiumSkyblock API, please use the . All other classes which are not in the com.iridium.iridiumskyblock.apipackage are considered to be internal classes and might change at any point.

Gradle (Kotlin DSL)

repositories {
    maven("https://nexus.iridiumdevelopment.net/repository/maven-releases/")
}

dependencies {
    // Replace this version with the latest one
    compileOnly("com.iridium", "IridiumSkyblock", "LATEST")
}

Maven

<repository>
    <id>iridiumdevelopment</id>
    <url>https://nexus.iridiumdevelopment.net/repository/maven-releases/</url>
</repository>
...
<dependency>
    <groupId>com.iridium</groupId>
    <artifactId>IridiumSkyblock</artifactId>
    <version>LATEST</version>
</dependency>
IridiumSkyblockAPI class