From a531d110a51ce60b1441557e5e24f49413c39935 Mon Sep 17 00:00:00 2001 From: Dan <46821332+nsadeveloper789@users.noreply.github.com> Date: Wed, 6 Sep 2023 09:07:52 -0400 Subject: [PATCH] GP-0: Fix test compilation dependencies. --- Ghidra/Debug/Debugger-agent-gdb/build.gradle | 1 + Ghidra/Framework/Pty/build.gradle | 2 ++ 2 files changed, 3 insertions(+) diff --git a/Ghidra/Debug/Debugger-agent-gdb/build.gradle b/Ghidra/Debug/Debugger-agent-gdb/build.gradle index b0a44b6fbc..875e0d1285 100644 --- a/Ghidra/Debug/Debugger-agent-gdb/build.gradle +++ b/Ghidra/Debug/Debugger-agent-gdb/build.gradle @@ -31,6 +31,7 @@ dependencies { api project(':Debugger-gadp') api project(':Pty') + testImplementation project(path: ':Pty', configuration: 'testArtifacts') testImplementation project(path: ':Framework-AsyncComm', configuration: 'testArtifacts') testImplementation project(path: ':Framework-Debugging', configuration: 'testArtifacts') testImplementation project(path: ':Debugger-gadp', configuration: 'testArtifacts') diff --git a/Ghidra/Framework/Pty/build.gradle b/Ghidra/Framework/Pty/build.gradle index 81c938a362..5127baa5b0 100644 --- a/Ghidra/Framework/Pty/build.gradle +++ b/Ghidra/Framework/Pty/build.gradle @@ -27,4 +27,6 @@ eclipse.project.name = 'Framework Pty' dependencies { api project(':Framework-Debugging') api "com.jcraft:jsch:0.1.55" + + testImplementation project(path: ':Framework-Debugging', configuration: 'testArtifacts') }