Merge branch 'master' into master

This commit is contained in:
Uthman Eqbal
2020-12-04 12:02:16 +00:00
committed by GitHub
4 changed files with 28 additions and 2 deletions

View File

@@ -19,8 +19,15 @@ sourceSets {
}
}
targetCompatibility = '1.8'
sourceCompatibility = '1.8'
compileJava {
options.encoding = "UTF-8"
}
task fatJar(type: Jar) {
baseName = project.name + '-all'
from { configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } }
with jar
}
}