2018-10-03 17:56:33 +02:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2020-10-06 12:33:40 +02:00
|
|
|
// Ref: https://kotlinlang.org/releases.html
|
2021-03-25 13:57:42 +01:00
|
|
|
ext.kotlin_version = '1.4.32'
|
2021-02-21 16:24:40 +01:00
|
|
|
ext.kotlin_coroutines_version = "1.4.2"
|
2018-10-03 17:56:33 +02:00
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
jcenter()
|
2019-03-18 16:53:52 +01:00
|
|
|
maven {
|
|
|
|
url "https://plugins.gradle.org/m2/"
|
2019-05-07 14:02:15 +02:00
|
|
|
}
|
|
|
|
}
|
2018-10-03 17:56:33 +02:00
|
|
|
dependencies {
|
2021-03-19 08:11:14 +01:00
|
|
|
classpath 'com.android.tools.build:gradle:4.1.3'
|
2021-02-04 18:02:47 +01:00
|
|
|
classpath 'com.google.gms:google-services:4.3.5'
|
2018-10-03 17:56:33 +02:00
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
2021-02-20 00:21:26 +01:00
|
|
|
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.1.1'
|
2021-04-06 09:22:36 +02:00
|
|
|
classpath 'com.google.android.gms:oss-licenses-plugin:0.10.3'
|
2021-03-03 17:26:20 +01:00
|
|
|
classpath "com.likethesalad.android:string-reference:1.2.1"
|
2018-10-03 17:56:33 +02:00
|
|
|
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
allprojects {
|
|
|
|
repositories {
|
2019-07-11 14:03:20 +02:00
|
|
|
// For olm library. This has to be declared first, to ensure that Olm library is not downloaded from another repo
|
2019-05-16 10:23:57 +02:00
|
|
|
maven {
|
|
|
|
url 'https://jitpack.io'
|
2019-07-11 14:03:20 +02:00
|
|
|
content {
|
|
|
|
// Use this repo only for olm library
|
|
|
|
includeGroupByRegex "org\\.matrix\\.gitlab\\.matrix-org"
|
|
|
|
// And also for FilePicker
|
|
|
|
includeGroupByRegex "com\\.github\\.jaiselrahman"
|
|
|
|
// And monarchy
|
|
|
|
includeGroupByRegex "com\\.github\\.Zhuinden"
|
2020-02-04 16:35:04 +01:00
|
|
|
// And ucrop
|
|
|
|
includeGroupByRegex "com\\.github\\.yalantis"
|
2020-02-17 13:48:21 +01:00
|
|
|
// JsonViewer
|
2020-02-12 16:48:11 +01:00
|
|
|
includeGroupByRegex 'com\\.github\\.BillCarsonFr'
|
2020-07-05 21:47:38 +02:00
|
|
|
// PhotoView
|
|
|
|
includeGroupByRegex 'com\\.github\\.chrisbanes'
|
2020-07-17 13:29:18 +02:00
|
|
|
// PFLockScreen-Android
|
2020-08-18 18:24:01 +02:00
|
|
|
includeGroupByRegex 'com\\.github\\.vector-im'
|
2020-12-09 12:34:22 +01:00
|
|
|
|
|
|
|
//Chat effects
|
|
|
|
includeGroupByRegex 'com\\.github\\.jetradarmobile'
|
|
|
|
includeGroupByRegex 'nl\\.dionsegijn'
|
2019-07-11 14:03:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
maven {
|
|
|
|
url "http://dl.bintray.com/piasy/maven"
|
|
|
|
content {
|
|
|
|
includeGroupByRegex "com\\.github\\.piasy"
|
|
|
|
}
|
2019-05-16 10:23:57 +02:00
|
|
|
}
|
2019-07-11 14:03:20 +02:00
|
|
|
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
|
2020-08-12 14:02:00 +02:00
|
|
|
// Jitsi repo
|
|
|
|
maven {
|
2021-02-10 12:15:32 +01:00
|
|
|
url "https://github.com/vector-im/jitsi_libre_maven/raw/master/android-sdk-3.1.0"
|
2020-08-14 21:33:25 +02:00
|
|
|
// Note: to test Jitsi release you can use a local file like this:
|
2021-02-10 12:15:32 +01:00
|
|
|
// url "file:///Users/bmarty/workspaces/jitsi_libre_maven/android-sdk-3.1.0"
|
2020-08-12 14:02:00 +02:00
|
|
|
}
|
2019-07-11 14:03:20 +02:00
|
|
|
google()
|
|
|
|
jcenter()
|
2018-10-03 17:56:33 +02:00
|
|
|
}
|
2019-07-16 19:13:48 +02:00
|
|
|
|
2019-10-08 14:30:59 +02:00
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
|
|
|
// Warnings are potential errors, so stop ignoring them
|
2020-10-08 13:04:55 +02:00
|
|
|
// You can override by passing `-PallWarningsAsErrors=false` in the command line
|
2020-10-22 17:23:45 +02:00
|
|
|
kotlinOptions.allWarningsAsErrors = project.getProperties().getOrDefault("allWarningsAsErrors", "true").toBoolean()
|
2019-10-08 14:30:59 +02:00
|
|
|
}
|
2018-10-03 17:56:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
2019-03-18 16:53:52 +01:00
|
|
|
|
|
|
|
apply plugin: 'org.sonarqube'
|
|
|
|
|
2019-07-03 15:24:56 +02:00
|
|
|
// To run a sonar analysis:
|
|
|
|
// Run './gradlew sonarqube -Dsonar.login=<REPLACE_WITH_SONAR_KEY>'
|
|
|
|
// The SONAR_KEY is stored in passbolt
|
|
|
|
|
2019-03-18 16:53:52 +01:00
|
|
|
sonarqube {
|
|
|
|
properties {
|
2020-08-27 17:48:19 +02:00
|
|
|
property "sonar.projectName", "Element-Android"
|
|
|
|
property "sonar.projectKey", "im.vector.app.android"
|
2019-03-18 16:53:52 +01:00
|
|
|
property "sonar.host.url", "https://sonarcloud.io"
|
2019-03-19 14:38:15 +01:00
|
|
|
property "sonar.projectVersion", project(":vector").android.defaultConfig.versionName
|
2019-03-18 16:53:52 +01:00
|
|
|
property "sonar.sourceEncoding", "UTF-8"
|
2020-08-27 17:43:22 +02:00
|
|
|
property "sonar.links.homepage", "https://github.com/vector-im/element-android/"
|
2020-09-01 18:49:08 +02:00
|
|
|
property "sonar.links.ci", "https://buildkite.com/matrix-dot-org/element-android"
|
2020-08-27 17:43:22 +02:00
|
|
|
property "sonar.links.scm", "https://github.com/vector-im/element-android/"
|
|
|
|
property "sonar.links.issue", "https://github.com/vector-im/element-android/issues"
|
2019-03-18 16:53:52 +01:00
|
|
|
property "sonar.organization", "new_vector_ltd_organization"
|
|
|
|
property "sonar.login", project.hasProperty("SONAR_LOGIN") ? SONAR_LOGIN : "invalid"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-19 14:38:15 +01:00
|
|
|
project(":vector") {
|
2019-03-18 16:53:52 +01:00
|
|
|
sonarqube {
|
|
|
|
properties {
|
2019-03-19 14:38:15 +01:00
|
|
|
property "sonar.sources", project(":vector").android.sourceSets.main.java.srcDirs
|
2019-03-18 16:53:52 +01:00
|
|
|
// exclude source code from analyses separated by a colon (:)
|
2020-08-27 17:39:09 +02:00
|
|
|
// Exclude Java source
|
|
|
|
property "sonar.exclusions", "**/BugReporterMultipartBody.java"
|
2019-03-18 16:53:52 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-03 15:24:56 +02:00
|
|
|
|
2020-08-27 15:37:39 +02:00
|
|
|
project(":diff-match-patch") {
|
|
|
|
sonarqube {
|
|
|
|
skipProject = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-03 15:24:56 +02:00
|
|
|
//project(":matrix-sdk-android") {
|
|
|
|
// sonarqube {
|
|
|
|
// properties {
|
|
|
|
// property "sonar.sources", project(":matrix-sdk-android").android.sourceSets.main.java.srcDirs
|
|
|
|
// // exclude source code from analyses separated by a colon (:)
|
|
|
|
// // property "sonar.exclusions", "**/*.*"
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//project(":matrix-sdk-android-rx") {
|
|
|
|
// sonarqube {
|
|
|
|
// properties {
|
|
|
|
// property "sonar.sources", project(":matrix-sdk-android-rx").android.sourceSets.main.java.srcDirs
|
|
|
|
// // exclude source code from analyses separated by a colon (:)
|
|
|
|
// // property "sonar.exclusions", "**/*.*"
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//}
|