forked from eclipse-lsp4j/lsp4j
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbuild.gradle
28 lines (23 loc) · 951 Bytes
/
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
/*******************************************************************************
* Copyright (c) 2016 TypeFox GmbH (http://www.typefox.io) and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
ext.title = 'LSP4J'
description = 'Java bindings for the Language Server Protocol'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
dependencies {
compile project(":org.eclipse.lsp4j.generator")
compile project(":org.eclipse.lsp4j.jsonrpc")
testCompile "junit:junit:$versions.junit"
}
jar {
from sourceSets.main.allJava
}
jar.manifest {
instruction 'Import-Package', "com.google.common.*;version=\"$versions.guava\""
instruction 'Import-Package', '*'
}