ghidra/Ghidra/Framework/Docking/build.gradle

28 lines
859 B
Groovy
Raw Normal View History

2019-03-26 17:45:32 +00:00
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'
])