mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-30 03:46:16 +08:00
GT-2835 updated to commons-lang3-3.9 and corrected some eclipse project
issues
This commit is contained in:
@@ -16,7 +16,7 @@ dependencies {
|
|||||||
compile "org.apache.logging.log4j:log4j-api:2.8.2"
|
compile "org.apache.logging.log4j:log4j-api:2.8.2"
|
||||||
compile "org.apache.logging.log4j:log4j-core: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-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"
|
compile "org.lucee:commons-io:2.6.0"
|
||||||
|
|
||||||
compileOnly "junit:junit:4.12"
|
compileOnly "junit:junit:4.12"
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
apply plugin: 'java'
|
|
||||||
apply plugin: 'eclipse'
|
apply plugin: 'eclipse'
|
||||||
|
|
||||||
eclipse {
|
eclipse {
|
||||||
|
|||||||
+1
-1
@@ -51,7 +51,7 @@ public class Lab5Script extends GhidraScript {
|
|||||||
String comment =
|
String comment =
|
||||||
"[" + register.getName() + "]=[" + scalar.toString(16, false, false, "", "") + "]";
|
"[" + register.getName() + "]=[" + scalar.toString(16, false, false, "", "") + "]";
|
||||||
setEOLComment(instruction.getMinAddress(), comment);
|
setEOLComment(instruction.getMinAddress(), comment);
|
||||||
instruction = getNextInstruction();
|
instruction = getInstructionAfter(instruction);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,18 @@
|
|||||||
|
apply plugin: 'java'
|
||||||
apply plugin: 'eclipse'
|
apply plugin: 'eclipse'
|
||||||
eclipse.project.name = '_GhidraDocs'
|
eclipse.project.name = '_GhidraDocs'
|
||||||
|
|
||||||
|
sourceSets {
|
||||||
|
ghidraClass {
|
||||||
|
java {
|
||||||
|
srcDir 'GhidraClass/AdvancedDevelopment/contrib/gadc/ghidra_scripts'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
compile project(':Base')
|
||||||
|
}
|
||||||
|
|
||||||
rootProject.assembleDistribution {
|
rootProject.assembleDistribution {
|
||||||
from (this.project.projectDir) {
|
from (this.project.projectDir) {
|
||||||
|
|||||||
Reference in New Issue
Block a user