Update build file to fix error
This commit is contained in:
parent
8758db6f75
commit
2cea070bb9
1 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,6 @@ plugins {
|
|||
id 'maven-publish'
|
||||
}
|
||||
|
||||
version = "1.2.${determinePatchVersion()}"
|
||||
group = "dev.zontreck"
|
||||
archivesBaseName = "LibAC"
|
||||
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
|
||||
|
@ -31,7 +30,8 @@ def determinePatchVersion = {
|
|||
}
|
||||
return tagInfo.split("-")[1]
|
||||
}
|
||||
|
||||
version = determinePatchVersion()
|
||||
version = "${apiVer}.${version}"
|
||||
repositories {
|
||||
// Use Maven Central for resolving dependencies.
|
||||
mavenCentral()
|
||||
|
|
Loading…
Reference in a new issue