From d8930a95204dbf16040716632755ae1d58cec93a Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Fri, 30 Jul 2021 01:14:06 -0700 Subject: [PATCH] Dependencies update. --- .circleci/config.yml | 5 ++--- .idea/misc.xml | 2 +- .idea/runConfigurations.xml | 10 ++++++++++ build.gradle | 15 +++++++-------- settings.gradle | 17 +++++++++++++++++ 5 files changed, 37 insertions(+), 12 deletions(-) create mode 100644 .idea/runConfigurations.xml diff --git a/.circleci/config.yml b/.circleci/config.yml index cd06643..a7df501 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -35,7 +35,7 @@ jobs: <<: *defaults docker: - - image: cimg/openjdk:15.0.2 + - image: cimg/openjdk:15.0 <<: *defaults_gradle @@ -43,7 +43,7 @@ jobs: <<: *defaults docker: - - image: cimg/openjdk:11.0.10 + - image: cimg/openjdk:11.0 <<: *defaults_gradle @@ -53,4 +53,3 @@ workflows: jobs: - build_gradle_jdk11 - build_gradle_jdk15 - diff --git a/.idea/misc.xml b/.idea/misc.xml index 1503b42..d755e4c 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -4,5 +4,5 @@ - + \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml new file mode 100644 index 0000000..797acea --- /dev/null +++ b/.idea/runConfigurations.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/build.gradle b/build.gradle index 9b77fb4..ccdd746 100644 --- a/build.gradle +++ b/build.gradle @@ -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.17.1' + id 'io.gitlab.arturbosch.detekt' version '1.18.0-RC2' id 'jacoco' id 'java' id 'net.thauvin.erik.gradle.semver' version '1.0.4' - id 'org.jetbrains.kotlin.jvm' version '1.5.20' - id 'org.jetbrains.kotlin.kapt' version '1.5.20' + id 'org.jetbrains.kotlin.jvm' version '1.5.21' + id 'org.jetbrains.kotlin.kapt' version '1.5.21' id 'org.sonarqube' version '3.3' id 'pmd' } @@ -39,14 +39,13 @@ dependencies { compileOnly 'pircbot:pircbot:1.5.0:sources' implementation(platform("org.jetbrains.kotlin:kotlin-bom")) - implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.0' + implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.1' implementation "org.apache.logging.log4j:log4j-api:$versions.log4j" implementation "org.apache.logging.log4j:log4j-core:$versions.log4j" implementation "org.apache.logging.log4j:log4j-slf4j-impl:$versions.log4j" implementation 'commons-cli:commons-cli:1.4' implementation 'commons-net:commons-net:3.8.0' - implementation 'org.apache.commons:commons-lang3:3.12.0' implementation 'com.rometools:rome:1.16.0' implementation 'com.squareup.okhttp3:okhttp:4.9.1' @@ -57,7 +56,7 @@ dependencies { implementation 'net.thauvin.erik:pinboard-poster:1.0.3' implementation 'org.json:json:20210307' - implementation 'org.jsoup:jsoup:1.13.1' + implementation 'org.jsoup:jsoup:1.14.1' implementation 'org.twitter4j:twitter4j-core:4.0.7' testImplementation 'org.assertj:assertj-core:3.20.2' @@ -75,8 +74,8 @@ test { } java { - sourceCompatibility = JavaVersion.VERSION_1_8 - targetCompatibility = JavaVersion.VERSION_1_8 + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 } kapt { diff --git a/settings.gradle b/settings.gradle index 48e3810..53bc4db 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1 +1,18 @@ +plugins { + id "com.gradle.enterprise" version "3.6.3" +} + +gradleEnterprise { + buildScan { + link("GitHub", "https://github.com/ethauvin/pinboard-poster/tree/master") + if (System.getenv("CI")) { + uploadInBackground = false + publishOnFailure() + tag "CI" + } + termsOfServiceUrl = "https://gradle.com/terms-of-service" + termsOfServiceAgree = "yes" + } +} + rootProject.name = 'mobibot'