Skip to content

Commit

Permalink
Merge pull request #529 from eclipse/cd_issue528
Browse files Browse the repository at this point in the history
[#528] remove runtime dependencies to xbase.lib
  • Loading branch information
cdietrich committed Mar 1, 2023
2 parents 8b992b7 + a2e0f68 commit 4bad511
Show file tree
Hide file tree
Showing 11 changed files with 936 additions and 16 deletions.
3 changes: 2 additions & 1 deletion gradle/versions.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ ext.versions = [
'gson': '[2.9.1,2.11)',
'websocket_jakarta': '2.0.0',
'websocket': '1.0',
'junit': '4.13.2'
'junit': '4.13.2',
'archunit': '1.0.1'
]
7 changes: 5 additions & 2 deletions org.eclipse.lsp4j.debug/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,18 @@ ext.title = 'LSP4J Debug'
description = 'Java bindings for the Debug Server Protocol'

dependencies {
api project(":org.eclipse.lsp4j.generator")
compileOnly project(":org.eclipse.lsp4j.generator")
api project(":org.eclipse.lsp4j.jsonrpc.debug")
testImplementation "junit:junit:$versions.junit"
testImplementation "org.eclipse.xtend:org.eclipse.xtend.lib:$versions.xtend_lib"
testImplementation project(":org.eclipse.lsp4j.generator")
testImplementation "com.tngtech.archunit:archunit:$versions.archunit"
}

jar {
from sourceSets.main.allJava
}

jar.bnd (
'Import-Package': "com.google.common.*;version=\"$versions.guava\",com.google.gson.*;version=\"$versions.gson\",*",
'Import-Package': "com.google.gson.*;version=\"$versions.gson\",*",
)
Loading

0 comments on commit 4bad511

Please sign in to comment.