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'
|
id 'maven-publish'
|
||||||
}
|
}
|
||||||
|
|
||||||
version = "1.2.${determinePatchVersion()}"
|
|
||||||
group = "dev.zontreck"
|
group = "dev.zontreck"
|
||||||
archivesBaseName = "LibAC"
|
archivesBaseName = "LibAC"
|
||||||
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
|
java.toolchain.languageVersion = JavaLanguageVersion.of(17)
|
||||||
|
@ -31,7 +30,8 @@ def determinePatchVersion = {
|
||||||
}
|
}
|
||||||
return tagInfo.split("-")[1]
|
return tagInfo.split("-")[1]
|
||||||
}
|
}
|
||||||
|
version = determinePatchVersion()
|
||||||
|
version = "${apiVer}.${version}"
|
||||||
repositories {
|
repositories {
|
||||||
// Use Maven Central for resolving dependencies.
|
// Use Maven Central for resolving dependencies.
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue