forked from EyeTribe/tet-java-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (24 loc) · 693 Bytes
/
build.gradle
File metadata and controls
31 lines (24 loc) · 693 Bytes
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'me.tatarka:gradle-retrolambda:3.2.5'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
classpath 'com.google.code.findbugs:jsr305:3.0.1'
}
}
allprojects {
apply plugin: 'java'
repositories {
jcenter()
}
dependencies {
compile 'com.google.code.findbugs:jsr305:3.0.1'
compile 'org.jetbrains:annotations:13.0' //Use legacy version to ensure Java 6 support
}
}
task wrapper(type: Wrapper) {
gradleVersion = '3.1'
}