-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
58 lines (50 loc) · 1.12 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.github.oehme.sobula:sobula:0.6.6'
classpath 'org.xtext:xtext-gradle-plugin:2.0.8'
}
}
allprojects {
apply plugin: 'com.github.oehme.sobula.bintray-release'
group = "org.xtext"
bintray.user = "xtext-team"
bintray.pkg.name = rootProject.name
bintray.pkg.version.mavenCentralSync.user = "xtext.team"
contacts {
moniker "The Xtext team"
roles "owner"
github "xtext"
}
moniker "KwangWoo Heo"
github "kwanggy"
}
moniker "xarvey"
github "xarvey"
}
moniker "Scott Opell"
github "scottopell"
}
}
}
subprojects {
apply plugin: 'eclipse'
apply plugin: 'org.xtext.xtend'
repositories {
jcenter()
}
dependencies {
compile 'org.eclipse.xtext:org.eclipse.xtext.xtext.generator:2.23.0'
compile 'org.eclipse.xtend:org.eclipse.xtend.lib:2.23.0'
}
sourceCompatibility = 1.8
tasks.withType(JavaCompile) {
options.encoding = 'UTF-8'
}
}