-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
34 lines (27 loc) · 997 Bytes
/
build.gradle.kts
File metadata and controls
34 lines (27 loc) · 997 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
plugins {
id("java-library")
id("com.github.johnrengelman.shadow") version "8.1.1"
}
group = "org.allaymc.remotecommand"
description = "Execute server command through http interface"
version = "1.1.0"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
repositories {
mavenCentral()
maven("https://storehouse.okaeri.eu/repository/maven-public/")
maven("https://central.sonatype.com/repository/maven-snapshots/")
}
dependencies {
compileOnly(group = "org.allaymc.allay", name = "api", version = "0.12.0-SNAPSHOT")
compileOnly(group = "org.projectlombok", name = "lombok", version = "1.18.34")
implementation(group = "eu.okaeri", name = "okaeri-configs-yaml-snakeyaml", version = "5.0.13")
implementation(group = "org.apache.commons", name = "commons-lang3", version = "3.19.0")
annotationProcessor(group = "org.projectlombok", name = "lombok", version = "1.18.34")
}
tasks.shadowJar {
archiveClassifier = "shaded"
}