-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
31 lines (26 loc) · 791 Bytes
/
build.gradle.kts
File metadata and controls
31 lines (26 loc) · 791 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
plugins {
id("java-library")
id("org.allaymc.gradle.plugin") version "0.2.0"
}
group = "me.daoge.imager"
description = "Show image in your Allay server!"
version = "0.1.0"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(21)
}
}
allay {
api = "0.17.0"
plugin {
entrance = ".Imager"
authors += "daoge_cmd"
website = "https://github.com/smartcmd/Imager"
}
}
dependencies {
compileOnly(group = "org.projectlombok", name = "lombok", version = "1.18.34")
implementation(group = "net.coobird", name = "thumbnailator", version = "0.4.21")
implementation(group = "commons-io", name = "commons-io", version = "2.21.0")
annotationProcessor(group = "org.projectlombok", name = "lombok", version = "1.18.34")
}