-
Notifications
You must be signed in to change notification settings - Fork 8
/
build.gradle
47 lines (38 loc) · 922 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
42
43
44
45
46
47
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.xtend:xtend-gradle-plugin:0.4.9'
classpath 'com.github.oehme.sobula:sobula:0.6.5'
}
}
subprojects {
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'com.github.oehme.sobula.bintray-release'
group = "org.xtend"
bintray.pkg.name = "$project.group:$project.name"
contacts {
moniker "The Xtext team"
roles "owner"
github "xtext"
}
}
//TODO create bintray and central users
bintray.user = "oehme"
bintray.pkg.version.mavenCentralSync.user = "oehme"
repositories {
jcenter()
}
sourceCompatibility = 1.6
}
configure(subprojects.findAll{p-> p.name.contains('plugin')}){
apply plugin: 'com.github.oehme.sobula.plugin-release'
apply plugin: 'java-gradle-plugin'
apply plugin: 'org.xtend.xtend'
dependencies {
compile 'org.eclipse.xtend:org.eclipse.xtend.lib:2.7.3'
}
}