2018-10-03 15:56:33 +00:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2019-04-01 15:33:53 +00:00
|
|
|
ext.kotlin_version = '1.3.21'
|
2018-12-20 14:44:01 +00:00
|
|
|
ext.koin_version = '1.0.2'
|
2019-05-16 08:23:57 +00:00
|
|
|
// TODO ext.koin_version = '2.0.0-GA'
|
2018-10-03 15:56:33 +00:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
2019-03-18 15:53:52 +00:00
|
|
|
maven {
|
|
|
|
url "https://plugins.gradle.org/m2/"
|
2019-05-07 12:02:15 +00:00
|
|
|
}
|
|
|
|
}
|
2018-10-03 15:56:33 +00:00
|
|
|
dependencies {
|
2019-05-23 17:12:06 +00:00
|
|
|
classpath 'com.android.tools.build:gradle:3.4.1'
|
2019-04-02 16:08:43 +00:00
|
|
|
classpath 'com.google.gms:google-services:4.2.0'
|
2018-12-12 20:15:01 +00:00
|
|
|
classpath "com.airbnb.okreplay:gradle-plugin:1.4.0"
|
2018-10-03 15:56:33 +00:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2019-03-18 15:53:52 +00:00
|
|
|
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.2'
|
2019-06-18 15:42:07 +00:00
|
|
|
classpath 'com.google.android.gms:oss-licenses-plugin:0.9.5'
|
2018-10-03 15:56:33 +00:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2019-03-12 07:29:49 +00:00
|
|
|
maven { url "http://dl.bintray.com/piasy/maven" }
|
2018-10-18 09:16:02 +00:00
|
|
|
maven { url 'https://jitpack.io' }
|
2019-02-21 18:21:08 +00:00
|
|
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
2019-03-12 07:29:49 +00:00
|
|
|
google()
|
|
|
|
jcenter()
|
2019-05-16 08:23:57 +00:00
|
|
|
// For Olm SDK
|
|
|
|
maven {
|
|
|
|
url 'https://jitpack.io'
|
|
|
|
}
|
2018-10-03 15:56:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
2019-03-18 15:53:52 +00:00
|
|
|
|
|
|
|
apply plugin: 'org.sonarqube'
|
|
|
|
|
|
|
|
sonarqube {
|
|
|
|
properties {
|
|
|
|
property "sonar.projectName", "RiotX-Android"
|
|
|
|
property "sonar.projectKey", "vector.android.riotx"
|
|
|
|
property "sonar.host.url", "https://sonarcloud.io"
|
2019-03-19 13:38:15 +00:00
|
|
|
property "sonar.projectVersion", project(":vector").android.defaultConfig.versionName
|
2019-03-18 15:53:52 +00:00
|
|
|
property "sonar.sourceEncoding", "UTF-8"
|
|
|
|
property "sonar.links.homepage", "https://github.com/vector-im/riotX-android/"
|
2019-04-30 11:58:00 +00:00
|
|
|
property "sonar.links.ci", "https://buildkite.com/matrix-dot-org/riotx-android"
|
2019-03-18 15:53:52 +00:00
|
|
|
property "sonar.links.scm", "https://github.com/vector-im/riotX-android/"
|
|
|
|
property "sonar.links.issue", "https://github.com/vector-im/riotX-android/issues"
|
|
|
|
property "sonar.organization", "new_vector_ltd_organization"
|
|
|
|
property "sonar.login", project.hasProperty("SONAR_LOGIN") ? SONAR_LOGIN : "invalid"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-19 13:38:15 +00:00
|
|
|
project(":vector") {
|
2019-03-18 15:53:52 +00:00
|
|
|
sonarqube {
|
|
|
|
properties {
|
2019-03-19 13:38:15 +00:00
|
|
|
property "sonar.sources", project(":vector").android.sourceSets.main.java.srcDirs
|
2019-03-18 15:53:52 +00:00
|
|
|
// exclude source code from analyses separated by a colon (:)
|
|
|
|
// property "sonar.exclusions", "**/*.*"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|