mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-04 14:24:53 +08:00
[libgdx] Jabel support
This commit is contained in:
parent
05ded5c444
commit
dfaf11d503
6
.gitignore
vendored
6
.gitignore
vendored
@ -226,3 +226,9 @@ CLAUDE.md
|
|||||||
.claude
|
.claude
|
||||||
port-plan.md
|
port-plan.md
|
||||||
port-todo.md
|
port-todo.md
|
||||||
|
spine-libgdx/spine-libgdx/.settings/org.eclipse.buildship.core.prefs
|
||||||
|
spine-libgdx/spine-libgdx/.settings/org.eclipse.jdt.apt.core.prefs
|
||||||
|
spine-libgdx/spine-libgdx-tests/.settings/org.eclipse.buildship.core.prefs
|
||||||
|
spine-libgdx/spine-libgdx-tests/.settings/org.eclipse.jdt.apt.core.prefs
|
||||||
|
spine-libgdx/spine-skeletonviewer/.settings/org.eclipse.buildship.core.prefs
|
||||||
|
spine-libgdx/spine-skeletonviewer/.settings/org.eclipse.jdt.apt.core.prefs
|
||||||
|
|||||||
@ -56,10 +56,18 @@ allprojects {
|
|||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
annotationProcessor 'com.github.bsideup.jabel:jabel-javac-plugin:0.4.2'
|
||||||
|
compileOnly 'com.github.bsideup.jabel:jabel-javac-plugin:0.4.2'
|
||||||
|
}
|
||||||
|
|
||||||
tasks.withType(JavaCompile).configureEach {
|
tasks.withType(JavaCompile).configureEach {
|
||||||
sourceCompatibility = '1.8'
|
sourceCompatibility = 17 // for the IDE support
|
||||||
targetCompatibility = '1.8'
|
options.release = 8
|
||||||
options.release.set(8)
|
|
||||||
|
javaCompiler = javaToolchains.compilerFor {
|
||||||
|
languageVersion = JavaLanguageVersion.of(17)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user