-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
35 lines (29 loc) · 926 Bytes
/
build.gradle.kts
File metadata and controls
35 lines (29 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
plugins {
id("java-library")
id("org.allaymc.gradle.plugin") version "0.2.1"
}
group = "me.daoge.allaymap"
description = "AllayMap is a minimalistic and lightweight world map viewer for Allay servers, using the vanilla map rendering style"
version = "0.2.3-SNAPSHOT"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
allay {
api = "0.18.0"
plugin {
entrance = ".AllayMap"
authors += "daoge_cmd"
website = "https://github.com/smartcmd/AllayMap"
}
}
repositories {
mavenCentral()
maven("https://storehouse.okaeri.eu/repository/maven-public/")
}
dependencies {
compileOnly(group = "org.projectlombok", name = "lombok", version = "1.18.34")
implementation(group = "eu.okaeri", name = "okaeri-configs-yaml-snakeyaml", version = "5.0.13")
annotationProcessor(group = "org.projectlombok", name = "lombok", version = "1.18.34")
}