GP-933 fixing gradle warnings to prepare for Gradle 8

This commit is contained in:
ghidravore 2021-05-28 12:59:11 -04:00
parent fca4fd4844
commit 54d81f06c5
15 changed files with 75 additions and 20 deletions

View file

@ -17,12 +17,16 @@ apply from: "$rootProject.projectDir/gradle/distributableGhidraModule.gradle"
apply from: "$rootProject.projectDir/gradle/javaProject.gradle"
apply from: "$rootProject.projectDir/gradle/jacocoProject.gradle"
apply from: "$rootProject.projectDir/gradle/javaTestProject.gradle"
apply from: "$rootProject.projectDir/gradle/javadoc.gradle"
apply plugin: 'eclipse'
eclipse.project.name = 'Framework SoftwareModeling'
apply plugin: 'antlr'
rootProject.createJavadocs.exclude '**/pcodeCPort/**'
rootProject.createJsondocs.exclude '**/pcodeCPort/**'
// make sure antlr code gets built during prepdev so that the directories are created and
// eclipse doesn't complain about missing src directories.
rootProject.prepDev.dependsOn compileJava
@ -103,3 +107,5 @@ generateGrammarSource {
}
}
}
// must generate grammar before zipping if we want to include it in the source zip
zipSourceSubproject.dependsOn generateGrammarSource