element-android/build.gradle

121 lines
4.4 KiB
Groovy
Raw Normal View History

2018-10-03 18:56:33 +03:00
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
2020-07-06 16:59:49 +03:00
ext.kotlin_version = '1.3.72'
2018-10-03 18:56:33 +03:00
repositories {
google()
jcenter()
2019-03-18 17:53:52 +02:00
maven {
url "https://plugins.gradle.org/m2/"
2019-05-07 15:02:15 +03:00
}
}
2018-10-03 18:56:33 +03:00
dependencies {
2020-07-06 22:53:10 +03:00
// Warning: 3.6.3 leads to infinite gradle builds. Stick to 3.5.3 for the moment
classpath 'com.android.tools.build:gradle:3.5.3'
2019-09-27 12:56:12 +03:00
classpath 'com.google.gms:google-services:4.3.2'
2019-09-27 13:14:45 +03:00
classpath "com.airbnb.okreplay:gradle-plugin:1.5.0"
2018-10-03 18:56:33 +03:00
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
2019-09-27 13:14:45 +03:00
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.7.1'
2020-07-06 16:59:49 +03:00
classpath 'com.google.android.gms:oss-licenses-plugin:0.10.2'
2018-10-03 18:56:33 +03:00
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
2019-07-11 15:03:20 +03:00
// For olm library. This has to be declared first, to ensure that Olm library is not downloaded from another repo
2019-05-16 11:23:57 +03:00
maven {
url 'https://jitpack.io'
2019-07-11 15:03:20 +03: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 17:48:11 +02:00
includeGroupByRegex 'com\\.github\\.BillCarsonFr'
2020-07-05 22:47:38 +03:00
// PhotoView
includeGroupByRegex 'com\\.github\\.chrisbanes'
2020-07-17 14:29:18 +03:00
// PFLockScreen-Android
includeGroupByRegex 'com\\.github\\.ganfra'
2019-07-11 15:03:20 +03:00
}
}
maven {
url "http://dl.bintray.com/piasy/maven"
content {
includeGroupByRegex "com\\.github\\.piasy"
}
2019-05-16 11:23:57 +03:00
}
2019-07-11 15:03:20 +03:00
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' }
google()
jcenter()
2018-10-03 18:56:33 +03:00
}
2019-07-16 20:13:48 +03:00
tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
// Warnings are potential errors, so stop ignoring them
kotlinOptions.allWarningsAsErrors = true
}
2018-10-03 18:56:33 +03:00
}
task clean(type: Delete) {
delete rootProject.buildDir
}
2019-03-18 17:53:52 +02: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 17:53:52 +02:00
sonarqube {
properties {
property "sonar.projectName", "RiotX-Android"
property "sonar.projectKey", "vector.android.riotx"
property "sonar.host.url", "https://sonarcloud.io"
2019-03-19 15:38:15 +02:00
property "sonar.projectVersion", project(":vector").android.defaultConfig.versionName
2019-03-18 17:53:52 +02:00
property "sonar.sourceEncoding", "UTF-8"
property "sonar.links.homepage", "https://github.com/vector-im/riotX-android/"
2019-04-30 14:58:00 +03:00
property "sonar.links.ci", "https://buildkite.com/matrix-dot-org/riotx-android"
2019-03-18 17:53:52 +02: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 15:38:15 +02:00
project(":vector") {
2019-03-18 17:53:52 +02:00
sonarqube {
properties {
2019-03-19 15:38:15 +02:00
property "sonar.sources", project(":vector").android.sourceSets.main.java.srcDirs
2019-03-18 17:53:52 +02:00
// exclude source code from analyses separated by a colon (:)
// property "sonar.exclusions", "**/*.*"
}
}
}
//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", "**/*.*"
// }
// }
//}