-
Notifications
You must be signed in to change notification settings - Fork 146
/
build.gradle
31 lines (27 loc) · 1.11 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/******************************************************************************
* Copyright (c) 2016 TypeFox and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
******************************************************************************/
ext.title = 'LSP4J'
description = 'Java bindings for the Language Server Protocol'
java {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
dependencies {
compileOnly project(":org.eclipse.lsp4j.generator")
api project(":org.eclipse.lsp4j.jsonrpc")
testImplementation "junit:junit:$versions.junit"
testImplementation project(":org.eclipse.lsp4j.generator")
testImplementation "com.tngtech.archunit:archunit:$versions.archunit"
}
jar.bundle.bnd (
'Import-Package': "com.google.gson.*;version=\"$versions.gson\",*"
)