-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update build tools, Implement lib.versions.toml versioning
Update gradle plugin to v8.5 Increase Java version to 17 Moved all dependencies definitions to lib.versions.toml file Signed-off-by: Saeed Rezaee <[email protected]> Signed-off-by: Saeed Rezaee <[email protected]>
- Loading branch information
Showing
8 changed files
with
123 additions
and
113 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
[versions] | ||
dokka = "1.9.20" | ||
gson = "2.10.1" | ||
jodaTime = "2.10.14" | ||
kotlin = "1.9.23" | ||
kotlinxCoroutines = "1.8.1" | ||
license-report = "1.16" | ||
mockk = "1.12.0" | ||
okhttp = "4.9.3" | ||
retrofit = "2.9.0" | ||
slf4j = "2.0.16" | ||
sonarqube = "5.1.0.4882" | ||
testng = "7.9.0" | ||
|
||
[libraries] | ||
gson = { module = "com.google.code.gson:gson", version.ref = "gson" } | ||
joda-time = { module = "joda-time:joda-time", version.ref = "jodaTime" } | ||
kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib-jdk8", version.ref = "kotlin" } | ||
kotlin-coroutines-jdk8 = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-jdk8", version.ref = "kotlinxCoroutines" } | ||
mockk = { module = "io.mockk:mockk", version.ref = "mockk" } | ||
okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" } | ||
okhttp-logging = { module = "com.squareup.okhttp3:logging-interceptor", version.ref = "okhttp" } | ||
retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit" } | ||
retrofit-converter-gson = { module = "com.squareup.retrofit2:converter-gson", version.ref = "retrofit" } | ||
slf4j-api = { module = "org.slf4j:slf4j-api", version.ref = "slf4j" } | ||
slf4j-simple = { module = "org.slf4j:slf4j-simple", version.ref = "slf4j" } | ||
testng = { module = "org.testng:testng", version.ref = "testng" } | ||
|
||
[plugins] | ||
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" } | ||
license-report = { id = "com.github.jk1.dependency-license-report", version.ref = "license-report" } | ||
dokka = { id = "org.jetbrains.dokka", version.ref = "dokka" } | ||
sonarqube = { id = "org.sonarqube", version.ref = "sonarqube" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
#Mon Dec 16 09:41:12 CET 2024 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters