mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-06-07 15:17:42 +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) {
|
task makeEmoji(type: JavaExec, dependsOn: ['jar']) {
|
||||||
dependsOn['jar']
|
main = '-jar'
|
||||||
mainClass = '-jar'
|
|
||||||
args jar.archiveFile.get()
|
args jar.archiveFile.get()
|
||||||
args '-res'
|
args '-res'
|
||||||
args project.rootProject.project('app').projectDir.path + File.separator + 'src' +
|
args project.rootProject.project('app').projectDir.path + File.separator + 'src' +
|
||||||
|
@ -32,6 +31,6 @@ dependencies {
|
||||||
|
|
||||||
|
|
||||||
java {
|
java {
|
||||||
sourceCompatibility = JavaVersion.VERSION_17
|
sourceCompatibility = JavaVersion.VERSION_21
|
||||||
targetCompatibility = JavaVersion.VERSION_17
|
targetCompatibility = JavaVersion.VERSION_21
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue