mirror of
https://github.com/AXOLOTsh/RegistryLib.git
synced 2026-06-02 09:46:33 +03:00
23 lines
445 B
Kotlin
23 lines
445 B
Kotlin
plugins {
|
|
id("java-library")
|
|
}
|
|
|
|
group = "io.github.axolotsh"
|
|
version = "1.2"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven("https://repo.papermc.io/repository/maven-public/")
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly("org.projectlombok:lombok:1.18.44")
|
|
annotationProcessor("org.projectlombok:lombok:1.18.44")
|
|
|
|
compileOnly("io.papermc.paper:paper-api:26.1.1.build.+")
|
|
}
|
|
|
|
java {
|
|
toolchain.languageVersion = JavaLanguageVersion.of(25)
|
|
}
|