mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-09-19 16:40:38 -09:00
GP-7009: restoring build.gradle (again?) GP-7009: from Eclipse testing GP-7009: hmmm, not so much GP-7009: from review GP-7009: help revisions GP-7009: struggling with help GP-7009: struggling with help GP-7009: stubs GP-7009: local trash GP-7009: reset build.gradle GP-7009: NPE checks GP-7009: minor edits GP-7009: minor edits GP-7009: better connections story GP-7009: suggestions GP-7009: more cmds GP-7009: options GP-7009: mostly functional GP-7009: better breakpoints GP-7009: events GP-7009: towards events GP-7009: more methods GP-7009: mostly working methods GP-7009: jdk25 test GP-7009: test GP-7009: oops GP-7009: functional death star GP-7009: minimal working server GP-7009: untested GP-7009: fleshing things out GP-7009: one working method GP-7009: first pass GP-7009: first pass
31 lines
1.1 KiB
Groovy
31 lines
1.1 KiB
Groovy
/* ###
|
|
* IP: GHIDRA
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
apply from: "${rootProject.projectDir}/gradle/javaProject.gradle"
|
|
apply from: "${rootProject.projectDir}/gradle/helpProject.gradle"
|
|
apply from: "${rootProject.projectDir}/gradle/distributableGhidraModule.gradle"
|
|
|
|
apply plugin: 'eclipse'
|
|
eclipse.project.name = 'Debug Debugger-dap'
|
|
|
|
dependencies {
|
|
api project(':Debugger-rmi-trace')
|
|
api "org.eclipse.lsp4j:org.eclipse.lsp4j:1.0.0"
|
|
api "org.eclipse.lsp4j:org.eclipse.lsp4j.debug:1.0.0"
|
|
api "org.eclipse.lsp4j:org.eclipse.lsp4j.jsonrpc:1.0.0"
|
|
api "org.eclipse.lsp4j:org.eclipse.lsp4j.jsonrpc.debug:1.0.0"
|
|
}
|