We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c5b32be commit 9635ff3Copy full SHA for 9635ff3
build.gradle.kts
@@ -1,9 +1,11 @@
1
+import org.apache.tools.ant.filters.ReplaceTokens
2
+
3
plugins {
4
`java-library`
5
}
6
7
group = "dev.diona"
-version = "1.0.0"
8
+version = "1.0.1"
9
10
repositories {
11
maven("https://hub.spigotmc.org/nexus/content/groups/public/")
@@ -23,4 +25,8 @@ dependencies {
23
25
tasks.withType<JavaCompile> {
24
26
options.encoding = "UTF-8"
27
targetCompatibility = JavaVersion.VERSION_17.toString()
28
+}
29
30
+tasks.processResources {
31
+ expand("version" to project.version)
32
src/main/resources/plugin.yml
@@ -1,6 +1,6 @@
name: ViaLegacyAPI
main: dev.diona.vialegacyapi.ViaLegacyAPI
authors: [ _MylesC, Loyisa ]
-version: 1.0.0
+version: ${version}
api-version: 1.13
depend: [ ViaVersion ]
0 commit comments