forked from TypeFox/languageserver-example
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·41 lines (34 loc) · 896 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
29
30
31
32
33
34
35
36
37
38
39
40
41
buildscript {
repositories {
jcenter()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
dependencies {
classpath 'org.xtext:xtext-gradle-plugin:1.0.5'
}
}
subprojects {
ext.xtextVersion = '2.11.0-SNAPSHOT'
repositories {
mavenLocal()
jcenter()
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
apply plugin: 'java'
apply plugin: 'org.xtext.xtend'
apply from: "${rootDir}/gradle/source-layout.gradle"
apply plugin: 'eclipse'
apply plugin: 'idea'
group = 'io.typefox.vscode'
version = '0.0.1-SNAPSHOT'
sourceCompatibility = '1.8'
targetCompatibility = '1.8'
configurations.all {
exclude group: 'asm'
}
}
task installServer(type: Copy) {
dependsOn(':io.typefox.vscode.ide:installDist')
from "io.typefox.vscode.ide/build/install/xtext-server-example"
into "vscode-extension/xtext-server-example"
}