mirror of
https://github.com/Helium314/HeliBoard.git
synced 2025-04-18 13:22:03 +00:00
18 lines
478 B
Groovy
18 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
|
|
}
|