We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51a4a4e commit 614b09fCopy full SHA for 614b09f
2 files changed
build.gradle.kts
@@ -19,6 +19,15 @@ tasks.build {
19
}
20
dependsOn(project(":plugin").tasks.build)
21
22
+tasks.taboolibBuildApi {
23
+ doLast {
24
+ val plugin = project(":plugin")
25
+ val file =
26
+ file("${plugin.layout.buildDirectory.get()}/libs").listFiles()?.find { it.endsWith("plugin-$version-api.jar") }
27
+
28
+ file?.copyTo(file("${project.layout.buildDirectory.get()}/libs/${project.name}-$version-api.jar"), true)
29
+ }
30
+}
31
32
subprojects {
33
@@ -62,7 +71,7 @@ subprojects {
62
71
disableOnSkippedVersion = false
63
72
64
73
version {
65
- taboolib = "6.2.3-6bdc1c7"
74
+ taboolib = "6.2.3-18c77c6a"
66
75
coroutines = null
67
76
68
77
gradle.properties
@@ -1,2 +1,2 @@
1
group=me.arasple.mc.trmenu
2
-version=3.8.4
+version=3.8.5
0 commit comments