Updated dependencies
This commit is contained in:
parent
d8291e2156
commit
5834a23b7e
9 changed files with 26 additions and 15 deletions
14
build.gradle
14
build.gradle
|
@ -1,3 +1,5 @@
|
|||
import java.time.LocalDateTime
|
||||
import java.time.format.DateTimeFormatter
|
||||
import io.gitlab.arturbosch.detekt.Detekt
|
||||
import io.gitlab.arturbosch.detekt.DetektCreateBaselineTask
|
||||
|
||||
|
@ -10,7 +12,7 @@ plugins {
|
|||
id 'net.thauvin.erik.gradle.semver' version '1.0.4'
|
||||
id 'org.jetbrains.kotlin.jvm' version '1.8.22'
|
||||
id 'org.jetbrains.kotlin.kapt' version '1.8.22'
|
||||
id 'org.jetbrains.kotlinx.kover' version '0.7.1'
|
||||
id 'org.jetbrains.kotlinx.kover' version '0.7.2'
|
||||
id 'org.sonarqube' version '4.2.1.3168'
|
||||
id 'pmd'
|
||||
}
|
||||
|
@ -54,17 +56,17 @@ dependencies {
|
|||
// Commons (mostly for PircBotX)
|
||||
implementation 'org.apache.commons:commons-lang3:3.12.0'
|
||||
implementation 'org.apache.commons:commons-text:1.10.0'
|
||||
implementation 'commons-codec:commons-codec:1.15'
|
||||
implementation 'commons-codec:commons-codec:1.16.0'
|
||||
implementation 'commons-net:commons-net:3.9.0'
|
||||
|
||||
// Google
|
||||
implementation 'com.google.code.gson:gson:2.10.1'
|
||||
implementation 'com.google.guava:guava:32.0.1-jre'
|
||||
implementation 'com.google.guava:guava:32.1.1-jre'
|
||||
|
||||
// Kotlin
|
||||
implementation platform('org.jetbrains.kotlin:kotlin-bom')
|
||||
implementation 'org.jetbrains.kotlin:kotlin-stdlib'
|
||||
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1'
|
||||
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.2'
|
||||
implementation 'org.jetbrains.kotlinx:kotlinx-cli:0.3.5'
|
||||
|
||||
// Logging
|
||||
|
@ -77,7 +79,7 @@ dependencies {
|
|||
implementation 'com.squareup.okhttp3:okhttp:4.11.0'
|
||||
implementation 'net.aksingh:owm-japis:2.5.3.0'
|
||||
implementation 'net.objecthunter:exp4j:0.4.8'
|
||||
implementation 'org.json:json:20230227'
|
||||
implementation 'org.json:json:20230618'
|
||||
implementation 'org.jsoup:jsoup:1.16.1'
|
||||
|
||||
// Thauvin
|
||||
|
@ -188,7 +190,7 @@ incrementBuildMeta {
|
|||
if (isCI) {
|
||||
println 'No increment with CI.'
|
||||
} else {
|
||||
buildMeta = sprintf("%03d", (buildMeta as Integer) + 1)
|
||||
buildMeta = DateTimeFormatter.ofPattern("yyyyMMddHHmmss").format(LocalDateTime.now())
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue