GP-0: Fixing some project java version inconsistencies

This commit is contained in:
Ryan Kurtz 2023-04-27 07:50:33 -04:00
parent 9ab603fb2d
commit 269ea1ae7a
3 changed files with 9 additions and 0 deletions

View File

@ -18,6 +18,9 @@ eclipse.project.name = '_JsonDoclet'
apply plugin: 'java-library' apply plugin: 'java-library'
sourceCompatibility = "${rootProject.JAVA_COMPILER}"
targetCompatibility = "${rootProject.JAVA_COMPILER}"
dependencies { dependencies {
api "com.google.code.gson:gson:2.9.0" api "com.google.code.gson:gson:2.9.0"
} }

View File

@ -15,6 +15,9 @@
*/ */
apply plugin: 'java-library' apply plugin: 'java-library'
sourceCompatibility = "${rootProject.JAVA_COMPILER}"
targetCompatibility = "${rootProject.JAVA_COMPILER}"
//This project requires the eclpse PDE plugin. To create eclipse files for this project, run //This project requires the eclpse PDE plugin. To create eclipse files for this project, run
// "gradle eclipse -PeclipsePDE" // "gradle eclipse -PeclipsePDE"
if (hasProperty("eclipsePDE")) { if (hasProperty("eclipsePDE")) {

View File

@ -17,6 +17,9 @@ apply plugin: 'java-library'
apply plugin: 'eclipse' apply plugin: 'eclipse'
eclipse.project.name = '_GhidraDocs' eclipse.project.name = '_GhidraDocs'
sourceCompatibility = "${rootProject.JAVA_COMPILER}"
targetCompatibility = "${rootProject.JAVA_COMPILER}"
sourceSets { sourceSets {
ghidraClass { ghidraClass {
java { java {