forked from AltBeacon/android-beacon-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
30 lines (29 loc) · 974 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
buildscript {
repositories {
google()
jcenter()
mavenCentral()
repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.1'
//noinspection GradleDependency
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.1'
//noinspection GradleDependency
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:3.0.3'
// The 3.0 version of this plugin does not support Gradle 5, The latest source does support
// Grale 5. So we are using a snapshot until the 4.0 version is released.
//classpath "com.vanniktech:gradle-android-javadoc-plugin:0.3.0"
dependencies {
classpath "com.vanniktech:gradle-android-javadoc-plugin:0.4.0-SNAPSHOT"
}
}
}
allprojects {
repositories {
google()
jcenter()
}
}