mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-04-19 05:39:10 +00:00
19 lines
478 B
Groovy
19 lines
478 B
Groovy
|
apply plugin: "java"
|
||
|
apply plugin: 'kotlin'
|
||
|
|
||
|
ext {
|
||
|
javaMainClass = "tools.dict.MakeDictList"
|
||
|
}
|
||
|
|
||
|
java {
|
||
|
sourceCompatibility = JavaVersion.VERSION_17
|
||
|
targetCompatibility = JavaVersion.VERSION_17
|
||
|
}
|
||
|
|
||
|
tasks.register('makeDictList', JavaExec) {
|
||
|
args project.rootProject.project('app').projectDir.path + File.separator + 'src' +
|
||
|
File.separator + 'main' + File.separator + 'assets'
|
||
|
classpath = sourceSets.main.runtimeClasspath
|
||
|
main = javaMainClass
|
||
|
}
|