-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbuild.gradle
49 lines (38 loc) · 852 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
48
49
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
}
}
apply plugin: 'maven-publish'
publishing {
repositories {
maven {
url 'https://dl.bintray.com/engagingspaces/maven'
}
}
}
ext {
vertxVersion = '3.4.2'
graphqlVersion = '5.0'
junitVersion = '4.12'
}
subprojects {
apply plugin: 'java'
repositories {
mavenCentral()
jcenter()
}
group = 'io.engagingspaces'
version = '0.10.0'
sourceCompatibility = 1.8
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Werror"
}
}
task wrapper(type: Wrapper) {
gradleVersion = '3.5'
distributionUrl = "http://services.gradle.org/distributions/gradle-3.5-all.zip"
}