added support to build eclipse files for projects that require the

eclipse PDE
This commit is contained in:
ghidravore 2019-04-23 16:31:08 -04:00
parent df24f9ea24
commit a03c96d37b

View file

@ -1,5 +1,8 @@
apply plugin: 'java' apply plugin: 'java'
/* Requires Eclipse PDE
//This project requires the eclpse PDE plugin. To create eclipse files for this project, run
// "gradle eclipse -PeclipsePDE"
if (hasProperty("eclipsePDE")) {
apply plugin: 'eclipse' apply plugin: 'eclipse'
eclipse { eclipse {
project { project {
@ -23,7 +26,7 @@ eclipse {
} }
} }
} }
*/ }
// We want GhidraDev to run with Eclipses launched with Java 8 // We want GhidraDev to run with Eclipses launched with Java 8
sourceCompatibility = 1.8 sourceCompatibility = 1.8