Files
Mealient/build.gradle.kts
Kirill Kamakin 7c02a8341d Fix displaying recipe ingredient note twice (#197)
* Update README.md

* Bump version to 35

* Cleanup dependencies

* Bump versions of dependencies

* Save isFood/disableAmount flags to db

* Fix displaying ingredient note twice

* Remove whitespace after note is extracted
2024-01-14 10:44:21 +00:00

38 lines
825 B
Kotlin

buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath(libs.android.gradlePlugin)
classpath(libs.google.dagger.hiltPlugin)
classpath(libs.jetbrains.kotlinPlugin)
classpath(libs.jetbrains.serializationPlugin)
}
}
plugins {
alias(libs.plugins.sonarqube)
alias(libs.plugins.ksp) apply false
}
sonarqube {
properties {
property("sonar.projectKey", "kirmanak_Mealient")
property("sonar.organization", "kirmanak")
property("sonar.host.url", "https://sonarcloud.io")
}
}
subprojects {
sonarqube {
properties {
property(
"sonar.androidLint.reportPaths",
"${projectDir.path}/build/reports/lint-results-debug.xml"
)
}
}
}