mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-24 21:21:56 +00:00
GT-2835 updated to commons-lang3-3.9 and corrected some eclipse project
issues
This commit is contained in:
parent
515aa0962c
commit
3402c18b25
@ -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"
|
||||
|
@ -1,4 +1,3 @@
|
||||
apply plugin: 'java'
|
||||
apply plugin: 'eclipse'
|
||||
|
||||
eclipse {
|
||||
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user