mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-04-22 07:09:10 +00:00
make emoji task work again
This commit is contained in:
parent
846ab1edef
commit
16b6196c54
1 changed files with 4 additions and 5 deletions
|
@ -16,9 +16,8 @@ jar {
|
|||
|
||||
}
|
||||
|
||||
tasks.register('makeEmoji', JavaExec) {
|
||||
dependsOn['jar']
|
||||
mainClass = '-jar'
|
||||
task makeEmoji(type: JavaExec, dependsOn: ['jar']) {
|
||||
main = '-jar'
|
||||
args jar.archiveFile.get()
|
||||
args '-res'
|
||||
args project.rootProject.project('app').projectDir.path + File.separator + 'src' +
|
||||
|
@ -32,6 +31,6 @@ dependencies {
|
|||
|
||||
|
||||
java {
|
||||
sourceCompatibility = JavaVersion.VERSION_17
|
||||
targetCompatibility = JavaVersion.VERSION_17
|
||||
sourceCompatibility = JavaVersion.VERSION_21
|
||||
targetCompatibility = JavaVersion.VERSION_21
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue