forked from PierfrancescoSoffritti/android-youtube-player
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
33 lines (30 loc) · 891 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
apply from: './dependencies.gradle'
buildscript {
apply from: './dependencies.gradle'
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:$versions.gradlePlugin"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$versions.kotlin"
classpath "com.getkeepsafe.dexcount:dexcount-gradle-plugin:$versions.dexCount"
classpath "org.jetbrains.dokka:dokka-gradle-plugin:$versions.dokka"
}
}
allprojects {
repositories {
google()
mavenCentral()
maven {
name 'maven.songsterr.com'
url 's3://maven.songsterr.com.s3.amazonaws.com/'
authentication {
awsIm(AwsImAuthentication) // load from EC2 role or env var
}
}
}
tasks.withType(Javadoc).all {
enabled = false
}
}