Skip to content

Commit

Permalink
Versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
RedstoneWizard08 committed Sep 11, 2023
1 parent e9bd1ad commit 0941ee0
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion flow-preload/bin/main/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: FlowPreload
version: 1.3.0
version: ${version}
main: net.nosadnile.flow.preload.FlowPreload
api-version: 1.20
prefix: FLOW_PRELOAD
Expand Down
4 changes: 4 additions & 0 deletions flow-preload/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ tasks.named("build") {
dependsOn(tasks.shadowJar)
}

tasks.processResources {
expand("version" to project.version)
}

serverHelper {
eula.set(true)
jvmArgs.add("-Dfile.encoding=UTF-8")
Expand Down
2 changes: 1 addition & 1 deletion flow-preload/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: FlowPreload
version: 1.3.0
version: ${version}
main: net.nosadnile.flow.preload.FlowPreload
api-version: 1.20
prefix: FLOW_PRELOAD
Expand Down
2 changes: 1 addition & 1 deletion flow-purpur/bin/main/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Flow
version: 1.3.0
version: ${version}
main: net.nosadnile.flow.purpur.FlowPurpur
api-version: 1.20
prefix: FLOW
Expand Down
4 changes: 4 additions & 0 deletions flow-purpur/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ tasks.named("build") {
dependsOn(tasks.shadowJar)
}

tasks.processResources {
expand("version" to project.version)
}

serverHelper {
eula.set(true)
jvmArgs.add("-Dfile.encoding=UTF-8")
Expand Down
2 changes: 1 addition & 1 deletion flow-purpur/src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Flow
version: 1.3.0
version: ${version}
main: net.nosadnile.flow.purpur.FlowPurpur
api-version: 1.20
prefix: FLOW
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version = 1.3.0
version = 1.3.1
maven_group = net.nosadnile.flow

0 comments on commit 0941ee0

Please sign in to comment.