Updated dependencies.

This commit is contained in:
Erik C. Thauvin 2021-12-05 22:58:27 -08:00
parent 5dd1f89105
commit db8e1c198c
6 changed files with 20 additions and 98 deletions

View file

@ -2,12 +2,12 @@ plugins {
id 'application'
id 'com.github.ben-manes.versions' version '0.39.0'
id 'idea'
id 'io.gitlab.arturbosch.detekt' version '1.19.0-RC2'
id 'io.gitlab.arturbosch.detekt' version '1.19.0'
id 'java'
id 'net.thauvin.erik.gradle.semver' version '1.0.4'
id 'org.jetbrains.kotlin.jvm' version '1.6.0'
id 'org.jetbrains.kotlin.kapt' version '1.6.0'
id 'org.jetbrains.kotlinx.kover' version '0.4.2'
id 'org.jetbrains.kotlinx.kover' version '0.4.3'
id 'org.sonarqube' version '3.3'
id 'pmd'
}
@ -19,7 +19,7 @@ final def deployDir = 'deploy'
final def semverProcessor = "net.thauvin.erik:semver:1.2.0"
def isNonStable = { String version ->
def stableKeyword = ['RELEASE', 'FINAL', 'GA'].any { it -> version.toUpperCase().contains(it) }
def stableKeyword = ['RELEASE', 'FINAL', 'GA', 'JRE'].any { it -> version.toUpperCase().contains(it) }
def regex = /^[0-9,.v-]+(-r)?$/
return !stableKeyword && !(version ==~ regex)
}
@ -71,7 +71,7 @@ dependencies {
implementation 'net.thauvin.erik:cryptoprice:0.9.0-SNAPSHOT'
implementation 'net.thauvin.erik:pinboard-poster:1.0.3'
implementation 'org.json:json:20210307'
implementation 'org.json:json:20211205'
implementation 'org.jsoup:jsoup:1.14.3'
implementation 'org.twitter4j:twitter4j-core:4.0.7'