2018-10-03 23:56:33 +08:00
|
|
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
|
|
|
|
|
|
buildscript {
|
2021-09-15 17:28:58 +08:00
|
|
|
apply from: 'dependencies.gradle'
|
2021-12-11 04:19:43 +08:00
|
|
|
apply from: 'dependencies_groups.gradle'
|
2021-09-15 17:28:58 +08:00
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
repositories {
|
2022-05-07 00:40:38 +08:00
|
|
|
// Do not use `google()`, it prevents Dependabot from working properly
|
|
|
|
maven {
|
|
|
|
url 'https://maven.google.com'
|
|
|
|
}
|
2019-03-18 23:53:52 +08:00
|
|
|
maven {
|
|
|
|
url "https://plugins.gradle.org/m2/"
|
2019-05-07 20:02:15 +08:00
|
|
|
}
|
|
|
|
}
|
2021-09-15 17:28:58 +08:00
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
dependencies {
|
2021-09-02 15:36:13 +08:00
|
|
|
// Release notes of Android Gradle Plugin (AGP):
|
|
|
|
// https://developer.android.com/studio/releases/gradle-plugin
|
2021-09-15 17:28:58 +08:00
|
|
|
classpath libs.gradle.gradlePlugin
|
|
|
|
classpath libs.gradle.kotlinPlugin
|
2021-10-15 00:47:28 +08:00
|
|
|
classpath libs.gradle.hiltPlugin
|
2021-08-10 07:06:44 +08:00
|
|
|
classpath 'com.google.gms:google-services:4.3.10'
|
2021-06-11 13:55:24 +08:00
|
|
|
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.3'
|
2022-03-01 07:09:55 +08:00
|
|
|
classpath 'com.google.android.gms:oss-licenses-plugin:0.10.5'
|
2022-02-24 22:25:30 +08:00
|
|
|
classpath "com.likethesalad.android:stem-plugin:2.0.0"
|
2022-04-26 07:10:13 +08:00
|
|
|
classpath 'org.owasp:dependency-check-gradle:7.1.0.1'
|
2022-04-26 21:00:14 +08:00
|
|
|
classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.6.21"
|
2018-10-03 23:56:33 +08:00
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
|
|
// in the individual module build.gradle files
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-01 19:28:47 +08:00
|
|
|
// ktlint Plugin
|
|
|
|
plugins {
|
2022-05-04 07:06:53 +08:00
|
|
|
id "org.jlleitschuh.gradle.ktlint" version "10.3.0"
|
2021-10-01 19:28:47 +08:00
|
|
|
}
|
|
|
|
|
2022-03-22 21:05:33 +08:00
|
|
|
// https://github.com/jeremylong/DependencyCheck
|
|
|
|
apply plugin: 'org.owasp.dependencycheck'
|
|
|
|
|
2022-03-30 01:38:10 +08:00
|
|
|
dependencyCheck {
|
|
|
|
// See https://jeremylong.github.io/DependencyCheck/general/suppression.html
|
|
|
|
suppressionFiles = [
|
|
|
|
"./tools/dependencycheck/suppressions.xml"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
allprojects {
|
2021-10-01 19:28:47 +08:00
|
|
|
apply plugin: "org.jlleitschuh.gradle.ktlint"
|
|
|
|
|
2018-10-03 23:56:33 +08:00
|
|
|
repositories {
|
2022-05-07 00:40:38 +08:00
|
|
|
// Do not use `mavenCentral()`, it prevents Dependabot from working properly
|
2022-05-07 00:23:58 +08:00
|
|
|
maven {
|
|
|
|
url 'https://repo1.maven.org/maven2'
|
2022-01-31 23:29:31 +08:00
|
|
|
content {
|
|
|
|
groups.mavenCentral.regex.each { includeGroupByRegex it }
|
|
|
|
groups.mavenCentral.group.each { includeGroup it }
|
|
|
|
}
|
|
|
|
}
|
2019-05-16 16:23:57 +08:00
|
|
|
maven {
|
|
|
|
url 'https://jitpack.io'
|
2019-07-11 20:03:20 +08:00
|
|
|
content {
|
2021-12-11 04:35:48 +08:00
|
|
|
groups.jitpack.regex.each { includeGroupByRegex it }
|
|
|
|
groups.jitpack.group.each { includeGroup it }
|
2019-07-11 20:03:20 +08:00
|
|
|
}
|
|
|
|
}
|
2020-08-12 20:02:00 +08:00
|
|
|
// Jitsi repo
|
|
|
|
maven {
|
2022-03-30 00:24:44 +08:00
|
|
|
url "https://github.com/vector-im/jitsi_libre_maven/raw/main/android-sdk-5.0.2"
|
2020-08-15 03:33:25 +08:00
|
|
|
// Note: to test Jitsi release you can use a local file like this:
|
2021-11-18 20:18:37 +08:00
|
|
|
// url "file:///Users/bmarty/workspaces/jitsi_libre_maven/android-sdk-3.10.0"
|
2021-12-10 04:23:33 +08:00
|
|
|
content {
|
2021-12-11 04:35:48 +08:00
|
|
|
groups.jitsi.regex.each { includeGroupByRegex it }
|
|
|
|
groups.jitsi.group.each { includeGroup it }
|
2021-12-10 04:23:33 +08:00
|
|
|
}
|
2020-08-12 20:02:00 +08:00
|
|
|
}
|
2022-05-07 00:40:38 +08:00
|
|
|
// Do not use `google()`, it prevents Dependabot from working properly
|
|
|
|
maven {
|
|
|
|
url 'https://maven.google.com'
|
2021-12-10 04:41:37 +08:00
|
|
|
content {
|
2021-12-11 04:35:48 +08:00
|
|
|
groups.google.regex.each { includeGroupByRegex it }
|
|
|
|
groups.google.group.each { includeGroup it }
|
2021-12-10 04:41:37 +08:00
|
|
|
}
|
|
|
|
}
|
2021-12-11 01:09:14 +08:00
|
|
|
//noinspection JcenterRepositoryObsolete
|
2022-05-07 00:40:38 +08:00
|
|
|
// Do not use `jcenter`, it prevents Dependabot from working properly
|
|
|
|
maven {
|
|
|
|
url 'https://jcenter.bintray.com'
|
2021-12-10 04:03:36 +08:00
|
|
|
content {
|
2021-12-11 04:35:48 +08:00
|
|
|
groups.jcenter.regex.each { includeGroupByRegex it }
|
|
|
|
groups.jcenter.group.each { includeGroup it }
|
2021-12-10 04:03:36 +08:00
|
|
|
}
|
|
|
|
}
|
2018-10-03 23:56:33 +08:00
|
|
|
}
|
2019-07-17 01:13:48 +08:00
|
|
|
|
2019-10-08 20:30:59 +08:00
|
|
|
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
|
|
|
|
// Warnings are potential errors, so stop ignoring them
|
2020-10-08 19:04:55 +08:00
|
|
|
// You can override by passing `-PallWarningsAsErrors=false` in the command line
|
2020-10-22 23:23:45 +08:00
|
|
|
kotlinOptions.allWarningsAsErrors = project.getProperties().getOrDefault("allWarningsAsErrors", "true").toBoolean()
|
2019-10-08 20:30:59 +08:00
|
|
|
}
|
2021-10-01 19:28:47 +08: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 {
|
2022-03-28 22:17:27 +08:00
|
|
|
// See https://github.com/pinterest/ktlint/releases/
|
|
|
|
version = "0.45.1"
|
2021-10-01 19:28:47 +08:00
|
|
|
android = true
|
|
|
|
ignoreFailures = false
|
|
|
|
enableExperimentalRules = true
|
|
|
|
// display the corresponding rule
|
|
|
|
verbose = true
|
|
|
|
disabledRules = [
|
2022-04-12 17:25:35 +08:00
|
|
|
// TODO: Re-enable these 4 rules after reformatting project
|
2022-04-12 17:12:14 +08:00
|
|
|
"indent",
|
2022-04-12 17:18:01 +08:00
|
|
|
"experimental:argument-list-wrapping",
|
2022-04-12 17:25:35 +08:00
|
|
|
"max-line-length",
|
|
|
|
"parameter-list-wrapping",
|
|
|
|
|
2021-10-01 19:28:47 +08:00
|
|
|
"spacing-between-declarations-with-comments",
|
|
|
|
"no-multi-spaces",
|
|
|
|
"experimental:spacing-between-declarations-with-annotations",
|
2022-03-28 22:35:03 +08:00
|
|
|
"experimental:annotation",
|
|
|
|
// - Missing newline after "("
|
|
|
|
// - Missing newline before ")"
|
|
|
|
"wrapping",
|
|
|
|
// - Unnecessary trailing comma before ")"
|
|
|
|
"experimental:trailing-comma",
|
|
|
|
// - A block comment in between other elements on the same line is disallowed
|
|
|
|
"experimental:comment-wrapping",
|
|
|
|
// - A KDoc comment after any other element on the same line must be separated by a new line
|
|
|
|
"experimental:kdoc-wrapping",
|
2021-10-01 19:28:47 +08:00
|
|
|
]
|
|
|
|
}
|
2018-10-03 23:56:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
task clean(type: Delete) {
|
|
|
|
delete rootProject.buildDir
|
|
|
|
}
|
2019-03-18 23:53:52 +08:00
|
|
|
|
2022-03-03 18:40:11 +08:00
|
|
|
def launchTask = getGradle()
|
|
|
|
.getStartParameter()
|
|
|
|
.getTaskRequests()
|
|
|
|
.toString()
|
|
|
|
.toLowerCase()
|
|
|
|
|
|
|
|
if (launchTask.contains("codeCoverageReport".toLowerCase())) {
|
|
|
|
apply from: 'coverage.gradle'
|
|
|
|
}
|
|
|
|
|
2019-03-18 23:53:52 +08:00
|
|
|
apply plugin: 'org.sonarqube'
|
|
|
|
|
2019-07-03 21:24:56 +08:00
|
|
|
// To run a sonar analysis:
|
|
|
|
// Run './gradlew sonarqube -Dsonar.login=<REPLACE_WITH_SONAR_KEY>'
|
2022-03-01 22:47:41 +08:00
|
|
|
// The SONAR_KEY is stored in passbolt as Token Sonar Cloud Bma
|
2019-07-03 21:24:56 +08:00
|
|
|
|
2019-03-18 23:53:52 +08:00
|
|
|
sonarqube {
|
|
|
|
properties {
|
2020-08-27 23:48:19 +08:00
|
|
|
property "sonar.projectName", "Element-Android"
|
|
|
|
property "sonar.projectKey", "im.vector.app.android"
|
2019-03-18 23:53:52 +08:00
|
|
|
property "sonar.host.url", "https://sonarcloud.io"
|
2019-03-19 21:38:15 +08:00
|
|
|
property "sonar.projectVersion", project(":vector").android.defaultConfig.versionName
|
2019-03-18 23:53:52 +08:00
|
|
|
property "sonar.sourceEncoding", "UTF-8"
|
2020-08-27 23:43:22 +08:00
|
|
|
property "sonar.links.homepage", "https://github.com/vector-im/element-android/"
|
2022-03-03 23:41:09 +08:00
|
|
|
property "sonar.links.ci", "https://github.com/vector-im/element-android/actions"
|
2020-08-27 23:43:22 +08: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 23:53:52 +08:00
|
|
|
property "sonar.organization", "new_vector_ltd_organization"
|
2022-03-03 23:41:09 +08:00
|
|
|
property "sonar.java.coveragePlugin", "jacoco"
|
|
|
|
property "sonar.coverage.jacoco.xmlReportPaths", "${project.buildDir}/reports/jacoco/allCodeCoverageReport/allCodeCoverageReport.xml"
|
2019-03-18 23:53:52 +08:00
|
|
|
property "sonar.login", project.hasProperty("SONAR_LOGIN") ? SONAR_LOGIN : "invalid"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-19 21:38:15 +08:00
|
|
|
project(":vector") {
|
2019-03-18 23:53:52 +08:00
|
|
|
sonarqube {
|
|
|
|
properties {
|
2019-03-19 21:38:15 +08:00
|
|
|
property "sonar.sources", project(":vector").android.sourceSets.main.java.srcDirs
|
2019-03-18 23:53:52 +08:00
|
|
|
// exclude source code from analyses separated by a colon (:)
|
2020-08-27 23:39:09 +08:00
|
|
|
// Exclude Java source
|
|
|
|
property "sonar.exclusions", "**/BugReporterMultipartBody.java"
|
2019-03-18 23:53:52 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-03 21:24:56 +08:00
|
|
|
|
2022-02-23 02:40:17 +08:00
|
|
|
project(":library:diff-match-patch") {
|
2020-08-27 21:37:39 +08:00
|
|
|
sonarqube {
|
|
|
|
skipProject = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-03 21:24:56 +08: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", "**/*.*"
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//}
|