-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbuild.gradle
36 lines (32 loc) · 1.11 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
buildscript {
ext {
compose_ui_version = '1.4.3'
nav_version = '2.5.3'
room_version = "2.5.1"
coroutine_version = "1.7.1"
shimmer_version = "1.0.5"
retrofit_version = '2.9.0'
constraint_version = "1.0.1"
coil_version = "2.4.0"
ktor_version = "2.3.4"
}
}
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.4.2' apply false
id 'com.android.library' version '7.4.2' apply false
id 'org.jetbrains.kotlin.android' version '1.8.21' apply false
id 'org.jetbrains.kotlin.plugin.serialization' version '1.6.21' apply false
id "org.sonarqube" version "4.0.0.2929" apply false
}
subprojects {
apply plugin: "org.sonarqube"
sonarqube {
properties {
property "sonar.projectKey", "ahmedomara14_newsApp"
property "sonar.organization", "ahmedomara14"
property "sonar.host.url", "https://sonarcloud.io"
property "sonar.login", "9f963a607f21e0d6ad540721eb6c4a33a321b58e"
}
}
}