Commit f441d066 authored by Hotaru's avatar Hotaru Committed by Melledy
Browse files

Allow to override final jar filename using project property

parent 65fcae79
......@@ -105,6 +105,7 @@ jar {
}
jar.baseName = 'grasscutter'
jar.archiveName = project.hasProperty('jarFilename') ? "${jarFilename}.${extension}" : archiveName
from {
configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment