mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-02-18 00:20:10 +00:00
28 lines
859 B
Groovy
28 lines
859 B
Groovy
|
apply plugin: 'eclipse'
|
||
|
eclipse.project.name = 'Framework Docking'
|
||
|
|
||
|
dependencies {
|
||
|
compile project(':Generic')
|
||
|
compile 'net.java.dev.timingframework:timingframework:1.0'
|
||
|
compile 'com.toedter:jcalendar:1.4'
|
||
|
|
||
|
|
||
|
// Only include this debug version of the jh library if necessary.
|
||
|
//compile name:'jh2.with.debug'
|
||
|
compile 'javax.help:javahelp:2.0.05'
|
||
|
|
||
|
|
||
|
// include code from src/test in Generic
|
||
|
testCompile project(':Generic').sourceSets.test.output
|
||
|
|
||
|
compileOnly "junit:junit:4.12"
|
||
|
}
|
||
|
|
||
|
// For Java 9, we must explicitly export references to the internal classes we are using.
|
||
|
// We export them to all "unnamed" modules, which are modules that don't define themselves
|
||
|
// as a new Java 9 style module. Ghidra is currently using unnamed modules everywhere.
|
||
|
ext.addExports([
|
||
|
'java.desktop/sun.awt=ALL-UNNAMED',
|
||
|
'java.desktop/sun.awt.image=ALL-UNNAMED'
|
||
|
])
|