forked from AdevintaSpain/Leku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
42 lines (38 loc) · 1.01 KB
/
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
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.50'
repositories {
google()
maven {
url 'https://maven.google.com/'
name 'Google'
}
maven {
url "https://dl.bintray.com/ferranpons/maven"
}
maven {
url "https://novoda.bintray.com/snapshots"
}
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.1'
classpath "org.jfrog.buildinfo:build-info-extractor-gradle:4.9.0"
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
classpath 'com.ferranpons:twitter-gradle-plugin:1.1.0'
classpath "gradle.plugin.org.jlleitschuh.gradle:ktlint-gradle:4.1.0"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id "io.gitlab.arturbosch.detekt" version "1.0.0.RC7-3"
}
allprojects {
repositories {
maven {
url "http://dl.bintray.com/schibstedspain/maven"
}
google()
jcenter()
}
}