Update the buildscript
This commit is contained in:
parent
74a5c3b4bf
commit
38c0031bbe
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ plugins {
|
||||||
}
|
}
|
||||||
|
|
||||||
base.archivesName = project.archives_base_name
|
base.archivesName = project.archives_base_name
|
||||||
version = "${project.version}+${libs.versions.minecraft.get()}"
|
version = "$project.version+${libs.versions.minecraft.get()}"
|
||||||
group = project.maven_group
|
group = project.maven_group
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -66,7 +66,7 @@ java {
|
||||||
// If you plan to use a different file for the license, don't forget to change the file name here!
|
// If you plan to use a different file for the license, don't forget to change the file name here!
|
||||||
jar {
|
jar {
|
||||||
from('LICENSE') {
|
from('LICENSE') {
|
||||||
rename { "${it}_${archivesBaseName}" }
|
rename { "${it}_${base.archivesName.get()}" }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue