GT-2835 updated to commons-lang3-3.9 and corrected some eclipse project

issues
This commit is contained in:
ghidra1 2019-04-25 15:19:44 -04:00
parent 515aa0962c
commit 3402c18b25
4 changed files with 14 additions and 3 deletions

View file

@ -16,7 +16,7 @@ dependencies {
compile "org.apache.logging.log4j:log4j-api:2.8.2"
compile "org.apache.logging.log4j:log4j-core:2.8.2"
compile "org.apache.commons:commons-collections4:4.1"
compile "org.apache.commons:commons-lang3:3.5"
compile "org.apache.commons:commons-lang3:3.9"
compile "org.lucee:commons-io:2.6.0"
compileOnly "junit:junit:4.12"

View file

@ -1,4 +1,3 @@
apply plugin: 'java'
apply plugin: 'eclipse'
eclipse {

View file

@ -51,7 +51,7 @@ public class Lab5Script extends GhidraScript {
String comment =
"[" + register.getName() + "]=[" + scalar.toString(16, false, false, "", "") + "]";
setEOLComment(instruction.getMinAddress(), comment);
instruction = getNextInstruction();
instruction = getInstructionAfter(instruction);
}
}
}

View file

@ -1,6 +1,18 @@
apply plugin: 'java'
apply plugin: 'eclipse'
eclipse.project.name = '_GhidraDocs'
sourceSets {
ghidraClass {
java {
srcDir 'GhidraClass/AdvancedDevelopment/contrib/gadc/ghidra_scripts'
}
}
}
dependencies {
compile project(':Base')
}
rootProject.assembleDistribution {
from (this.project.projectDir) {