element-android/build.gradle

134 lines
5 KiB
Groovy
Raw Normal View History

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 {
// Ref: https://kotlinlang.org/releases.html
ext.kotlin_version = '1.5.10'
ext.kotlin_coroutines_version = "1.5.0"
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 {
classpath 'com.android.tools.build:gradle:4.2.1'
classpath 'com.google.gms:google-services:4.3.8'
2018-10-03 15:56:33 +00:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.3'
classpath 'com.google.android.gms:oss-licenses-plugin:0.10.4'
classpath "com.likethesalad.android:string-reference:1.2.2"
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-07-11 12:03:20 +00:00
// For olm library. This has to be declared first, to ensure that Olm library is not downloaded from another repo
2019-05-16 08:23:57 +00:00
maven {
url 'https://jitpack.io'
2019-07-11 12:03:20 +00: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"
// And ucrop
includeGroupByRegex "com\\.github\\.yalantis"
// JsonViewer
2020-02-12 15:48:11 +00:00
includeGroupByRegex 'com\\.github\\.BillCarsonFr'
2020-07-05 19:47:38 +00:00
// PhotoView
includeGroupByRegex 'com\\.github\\.chrisbanes'
2020-07-17 11:29:18 +00:00
// PFLockScreen-Android
includeGroupByRegex 'com\\.github\\.vector-im'
2020-12-09 11:34:22 +00:00
2021-04-30 12:04:56 +00:00
// Chat effects
2020-12-09 11:34:22 +00:00
includeGroupByRegex 'com\\.github\\.jetradarmobile'
includeGroupByRegex 'nl\\.dionsegijn'
2019-07-11 12:03:20 +00:00
}
}
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
2020-08-12 12:02:00 +00:00
// Jitsi repo
maven {
url "https://github.com/vector-im/jitsi_libre_maven/raw/main/android-sdk-3.1.0"
// Note: to test Jitsi release you can use a local file like this:
// url "file:///Users/bmarty/workspaces/jitsi_libre_maven/android-sdk-3.1.0"
2020-08-12 12:02:00 +00:00
}
2019-07-11 12:03:20 +00:00
google()
mavenCentral()
2019-07-11 12:03:20 +00:00
jcenter()
2018-10-03 15:56:33 +00:00
}
2019-07-16 17:13:48 +00:00
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
// Warnings are potential errors, so stop ignoring them
// You can override by passing `-PallWarningsAsErrors=false` in the command line
kotlinOptions.allWarningsAsErrors = project.getProperties().getOrDefault("allWarningsAsErrors", "true").toBoolean()
}
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'
// To run a sonar analysis:
// Run './gradlew sonarqube -Dsonar.login=<REPLACE_WITH_SONAR_KEY>'
// The SONAR_KEY is stored in passbolt
2019-03-18 15:53:52 +00:00
sonarqube {
properties {
property "sonar.projectName", "Element-Android"
property "sonar.projectKey", "im.vector.app.android"
2019-03-18 15:53:52 +00:00
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"
2020-08-27 15:43:22 +00:00
property "sonar.links.homepage", "https://github.com/vector-im/element-android/"
property "sonar.links.ci", "https://buildkite.com/matrix-dot-org/element-android"
2020-08-27 15:43:22 +00: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 15:53:52 +00:00
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 (:)
2020-08-27 15:39:09 +00:00
// Exclude Java source
property "sonar.exclusions", "**/BugReporterMultipartBody.java"
2019-03-18 15:53:52 +00:00
}
}
}
2020-08-27 13:37:39 +00:00
project(":diff-match-patch") {
sonarqube {
skipProject = true
}
}
//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", "**/*.*"
// }
// }
//}