Fix for version increment
This commit is contained in:
parent
e26e0606c5
commit
a74361497a
1 changed files with 2 additions and 1 deletions
|
@ -154,7 +154,8 @@ curseforge {
|
||||||
task nextVersion() {
|
task nextVersion() {
|
||||||
doLast {
|
doLast {
|
||||||
def inputFile = new File('modrinth.json')
|
def inputFile = new File('modrinth.json')
|
||||||
new URL("https://api.modrinth.com/v2/project/${project.archives_base_name}/version?&game_versions=${project.modrinth_versions}").withInputStream { i -> inputFile.withOutputStream { it << i } }
|
def gameVersions = java.net.URLEncoder.encode(project.modrinth_versions, "UTF-8")
|
||||||
|
new URL("https://api.modrinth.com/v2/project/${project.archives_base_name}/version?&game_versions=${gameVersions}").withInputStream { i -> inputFile.withOutputStream { it << i } }
|
||||||
|
|
||||||
def json = new groovy.json.JsonSlurper().parseText(inputFile.text)
|
def json = new groovy.json.JsonSlurper().parseText(inputFile.text)
|
||||||
def version = json[0].version_number
|
def version = json[0].version_number
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue