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 {
|
2021-09-15 11:28:58 +02:00
|
|
|
|
|
|
|
apply from: 'dependencies.gradle'
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2021-09-15 11:28:58 +02:00
|
|
|
|
2018-10-03 17:56:33 +02:00
|
|
|
dependencies {
|
2021-09-02 09:36:13 +02:00
|
|
|
// Release notes of Android Gradle Plugin (AGP):
|
|
|
|
// https://developer.android.com/studio/releases/gradle-plugin
|
2021-09-15 11:28:58 +02:00
|
|
|
classpath libs.gradle.gradlePlugin
|
|
|
|
classpath libs.gradle.kotlinPlugin
|
2021-10-14 18:47:28 +02:00
|
|
|
classpath libs.gradle.hiltPlugin
|
2021-08-10 01:06:44 +02:00
|
|
|
classpath 'com.google.gms:google-services:4.3.10'
|
2021-06-11 07:55:24 +02:00
|
|
|
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.3'
|
2021-04-13 09:21:36 +02:00
|
|
|
classpath 'com.google.android.gms:oss-licenses-plugin:0.10.4'
|
2021-04-11 21:07:08 +02:00
|
|
|
classpath "com.likethesalad.android:string-reference:1.2.2"
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-01 13:28:47 +02:00
|
|
|
// ktlint Plugin
|
|
|
|
plugins {
|
2021-10-02 01:06:54 +02:00
|
|
|
id "org.jlleitschuh.gradle.ktlint" version "10.2.0"
|
2021-10-01 13:28:47 +02:00
|
|
|
}
|
|
|
|
|
2018-10-03 17:56:33 +02:00
|
|
|
allprojects {
|
2021-10-01 13:28:47 +02:00
|
|
|
apply plugin: "org.jlleitschuh.gradle.ktlint"
|
|
|
|
|
2018-10-03 17:56:33 +02:00
|
|
|
repositories {
|
2021-12-09 21:05:31 +01:00
|
|
|
// For olm library.
|
|
|
|
maven {
|
|
|
|
url 'https://gitlab.matrix.org/api/v4/projects/27/packages/maven'
|
|
|
|
content {
|
|
|
|
includeGroup 'org.matrix.android'
|
|
|
|
}
|
|
|
|
}
|
2021-12-07 14:45:48 +01:00
|
|
|
|
2019-05-16 10:23:57 +02:00
|
|
|
maven {
|
|
|
|
url 'https://jitpack.io'
|
2019-07-11 14:03:20 +02:00
|
|
|
content {
|
2021-12-09 21:16:23 +01:00
|
|
|
includeGroup 'com.github.Armen101'
|
|
|
|
includeGroup 'com.github.BillCarsonFr'
|
|
|
|
includeGroup 'com.github.chrisbanes'
|
|
|
|
includeGroup 'com.github.hyuwah'
|
|
|
|
includeGroup 'com.github.jetradarmobile'
|
|
|
|
includeGroup 'com.github.vector-im'
|
|
|
|
includeGroup 'com.github.yalantis'
|
|
|
|
includeGroup 'com.github.Zhuinden'
|
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-11-18 13:18:37 +01:00
|
|
|
url "https://github.com/vector-im/jitsi_libre_maven/raw/main/android-sdk-3.10.0"
|
2020-08-14 21:33:25 +02:00
|
|
|
// Note: to test Jitsi release you can use a local file like this:
|
2021-11-18 13:18:37 +01:00
|
|
|
// url "file:///Users/bmarty/workspaces/jitsi_libre_maven/android-sdk-3.10.0"
|
2021-12-09 21:23:33 +01:00
|
|
|
content {
|
|
|
|
includeGroup 'com.facebook.react'
|
|
|
|
includeGroup 'org.jitsi.react'
|
|
|
|
includeGroup 'org.webkit'
|
|
|
|
}
|
2020-08-12 14:02:00 +02:00
|
|
|
}
|
2021-12-09 21:41:37 +01:00
|
|
|
google {
|
|
|
|
content {
|
|
|
|
includeGroupByRegex "androidx\\..*"
|
|
|
|
includeGroupByRegex "com\\.google\\.android\\..*"
|
|
|
|
includeGroup 'com.android.tools.build'
|
|
|
|
includeGroup 'com.google.firebase'
|
|
|
|
}
|
|
|
|
}
|
2021-05-03 00:27:28 +02:00
|
|
|
mavenCentral()
|
2021-12-09 21:03:36 +01:00
|
|
|
jcenter {
|
|
|
|
content {
|
|
|
|
includeGroup 'com.amulyakhare'
|
|
|
|
includeGroup 'com.danikula'
|
|
|
|
includeGroup 'com.otaliastudios'
|
|
|
|
includeGroup 'com.tapadoo.android'
|
|
|
|
includeGroup 'com.yqritc'
|
|
|
|
includeGroup 'dk.ilios'
|
|
|
|
includeGroup 'im.dlg'
|
|
|
|
includeGroup 'me.dm7.barcodescanner'
|
|
|
|
includeGroup 'me.gujun.android'
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
}
|
2021-10-01 13:28:47 +02:00
|
|
|
|
|
|
|
// Fix "Java heap space" issue
|
|
|
|
tasks.withType(org.jlleitschuh.gradle.ktlint.tasks.BaseKtLintCheckTask).configureEach {
|
|
|
|
it.workerMaxHeapSize.set("2G")
|
|
|
|
}
|
|
|
|
|
|
|
|
// See https://github.com/JLLeitschuh/ktlint-gradle#configuration
|
|
|
|
ktlint {
|
|
|
|
android = true
|
|
|
|
ignoreFailures = false
|
|
|
|
enableExperimentalRules = true
|
|
|
|
// display the corresponding rule
|
|
|
|
verbose = true
|
|
|
|
disabledRules = [
|
|
|
|
"spacing-between-declarations-with-comments",
|
|
|
|
"no-multi-spaces",
|
|
|
|
"experimental:spacing-between-declarations-with-annotations",
|
|
|
|
"experimental:annotation"
|
|
|
|
]
|
|
|
|
}
|
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", "**/*.*"
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//}
|