Updated dependencies.
This commit is contained in:
parent
cbc69be517
commit
7aaa46e9f4
6 changed files with 34 additions and 18 deletions
10
.idea/runConfigurations.xml
generated
Normal file
10
.idea/runConfigurations.xml
generated
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="RunConfigurationProducerService">
|
||||||
|
<option name="ignoredProducers">
|
||||||
|
<set>
|
||||||
|
<option value="com.android.tools.idea.compose.preview.runconfiguration.ComposePreviewRunConfigurationProducer" />
|
||||||
|
</set>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
|
</project>
|
|
@ -1,4 +1,5 @@
|
||||||
[](http://opensource.org/licenses/BSD-3-Clause) [](https://snyk.io/test/github/ethauvin/mobibot?targetFile=build.gradle) [](https://github.com/ethauvin/mobibot/actions/workflows/gradle.yml) [](https://circleci.com/gh/ethauvin/mobibot/tree/master)
|
[](https://opensource.org/licenses/BSD-3-Clause) [](https://sonarcloud.io/summary/new_code?id=ethauvin_mobibot)
|
||||||
|
[](https://snyk.io/test/github/ethauvin/mobibot?targetFile=build.gradle) [](https://github.com/ethauvin/mobibot/actions/workflows/gradle.yml) [](https://circleci.com/gh/ethauvin/mobibot/tree/master)
|
||||||
|
|
||||||
Some very basic instructions:
|
Some very basic instructions:
|
||||||
|
|
||||||
|
|
25
build.gradle
25
build.gradle
|
@ -1,13 +1,13 @@
|
||||||
plugins {
|
plugins {
|
||||||
id 'application'
|
id 'application'
|
||||||
id 'com.github.ben-manes.versions' version '0.41.0'
|
id 'com.github.ben-manes.versions' version '0.42.0'
|
||||||
id 'idea'
|
id 'idea'
|
||||||
id 'io.gitlab.arturbosch.detekt' version '1.19.0'
|
id 'io.gitlab.arturbosch.detekt' version '1.19.0'
|
||||||
id 'java'
|
id 'java'
|
||||||
id 'net.thauvin.erik.gradle.semver' version '1.0.4'
|
id 'net.thauvin.erik.gradle.semver' version '1.0.4'
|
||||||
id 'org.jetbrains.kotlin.jvm' version '1.6.10'
|
id 'org.jetbrains.kotlin.jvm' version '1.6.10'
|
||||||
id 'org.jetbrains.kotlin.kapt' version '1.6.10'
|
id 'org.jetbrains.kotlin.kapt' version '1.6.10'
|
||||||
id 'org.jetbrains.kotlinx.kover' version '0.4.4'
|
id 'org.jetbrains.kotlinx.kover' version '0.5.0'
|
||||||
id 'org.sonarqube' version '3.3'
|
id 'org.sonarqube' version '3.3'
|
||||||
id 'pmd'
|
id 'pmd'
|
||||||
}
|
}
|
||||||
|
@ -28,7 +28,7 @@ mainClassName = packageName + '.Mobibot'
|
||||||
|
|
||||||
ext.versions = [
|
ext.versions = [
|
||||||
log4j: '2.17.1',
|
log4j: '2.17.1',
|
||||||
pmd : '6.41.0',
|
pmd : '6.42.0',
|
||||||
]
|
]
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
|
@ -42,22 +42,27 @@ dependencies {
|
||||||
kapt(semverProcessor)
|
kapt(semverProcessor)
|
||||||
compileOnly(semverProcessor)
|
compileOnly(semverProcessor)
|
||||||
|
|
||||||
|
// PircBotX
|
||||||
implementation 'com.github.pircbotx:pircbotx:-SNAPSHOT'
|
implementation 'com.github.pircbotx:pircbotx:-SNAPSHOT'
|
||||||
|
|
||||||
|
// Commons
|
||||||
implementation 'org.apache.commons:commons-lang3:3.12.0'
|
implementation 'org.apache.commons:commons-lang3:3.12.0'
|
||||||
implementation 'org.apache.commons:commons-text:1.9'
|
implementation 'org.apache.commons:commons-text:1.9'
|
||||||
|
|
||||||
implementation 'commons-cli:commons-cli:1.5.0'
|
implementation 'commons-cli:commons-cli:1.5.0'
|
||||||
implementation 'commons-codec:commons-codec:1.15'
|
implementation 'commons-codec:commons-codec:1.15'
|
||||||
implementation 'commons-net:commons-net:3.8.0'
|
implementation 'commons-net:commons-net:3.8.0'
|
||||||
|
|
||||||
implementation 'com.google.code.gson:gson:2.8.9'
|
// Google
|
||||||
|
implementation 'com.google.code.gson:gson:2.9.0'
|
||||||
implementation 'com.google.guava:guava:31.0.1-jre'
|
implementation 'com.google.guava:guava:31.0.1-jre'
|
||||||
|
|
||||||
implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
|
// Kotlin
|
||||||
|
implementation platform('org.jetbrains.kotlin:kotlin-bom')
|
||||||
|
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
|
||||||
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0'
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0'
|
||||||
|
|
||||||
implementation 'org.slf4j:slf4j-api:1.7.33'
|
// Logging
|
||||||
|
implementation 'org.slf4j:slf4j-api:1.7.36'
|
||||||
implementation "org.apache.logging.log4j:log4j-api:$versions.log4j"
|
implementation "org.apache.logging.log4j:log4j-api:$versions.log4j"
|
||||||
implementation "org.apache.logging.log4j:log4j-core:$versions.log4j"
|
implementation "org.apache.logging.log4j:log4j-core:$versions.log4j"
|
||||||
implementation "org.apache.logging.log4j:log4j-slf4j-impl:$versions.log4j"
|
implementation "org.apache.logging.log4j:log4j-slf4j-impl:$versions.log4j"
|
||||||
|
@ -117,9 +122,9 @@ tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).configureEach {
|
||||||
}
|
}
|
||||||
|
|
||||||
tasks.named("dependencyUpdates").configure {
|
tasks.named("dependencyUpdates").configure {
|
||||||
rejectVersionIf {
|
rejectVersionIf {
|
||||||
isNonStable(it.candidate.version)
|
isNonStable(it.candidate.version)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pmd {
|
pmd {
|
||||||
|
|
|
@ -20,6 +20,9 @@
|
||||||
<ID>MagicNumber:Cycle.kt$Cycle$10</ID>
|
<ID>MagicNumber:Cycle.kt$Cycle$10</ID>
|
||||||
<ID>MagicNumber:Cycle.kt$Cycle$1000L</ID>
|
<ID>MagicNumber:Cycle.kt$Cycle$1000L</ID>
|
||||||
<ID>MagicNumber:Ignore.kt$Ignore$8</ID>
|
<ID>MagicNumber:Ignore.kt$Ignore$8</ID>
|
||||||
|
<ID>MagicNumber:Info.kt$Info.Companion$30</ID>
|
||||||
|
<ID>MagicNumber:Info.kt$Info.Companion$365</ID>
|
||||||
|
<ID>MagicNumber:Info.kt$Info.Companion$7</ID>
|
||||||
<ID>MagicNumber:Mobibot.kt$Mobibot$8</ID>
|
<ID>MagicNumber:Mobibot.kt$Mobibot$8</ID>
|
||||||
<ID>MagicNumber:Modules.kt$Modules$7</ID>
|
<ID>MagicNumber:Modules.kt$Modules$7</ID>
|
||||||
<ID>MagicNumber:StockQuote.kt$StockQuote.Companion$10</ID>
|
<ID>MagicNumber:StockQuote.kt$StockQuote.Companion$10</ID>
|
||||||
|
@ -29,9 +32,6 @@
|
||||||
<ID>MagicNumber:Twitter.kt$Twitter$60L</ID>
|
<ID>MagicNumber:Twitter.kt$Twitter$60L</ID>
|
||||||
<ID>MagicNumber:TwitterOAuth.kt$TwitterOAuth$401</ID>
|
<ID>MagicNumber:TwitterOAuth.kt$TwitterOAuth$401</ID>
|
||||||
<ID>MagicNumber:Users.kt$Users$8</ID>
|
<ID>MagicNumber:Users.kt$Users$8</ID>
|
||||||
<ID>MagicNumber:Utils.kt$Utils$30</ID>
|
|
||||||
<ID>MagicNumber:Utils.kt$Utils$365</ID>
|
|
||||||
<ID>MagicNumber:Utils.kt$Utils$7</ID>
|
|
||||||
<ID>MagicNumber:Weather2.kt$Weather2.Companion$1.60934</ID>
|
<ID>MagicNumber:Weather2.kt$Weather2.Companion$1.60934</ID>
|
||||||
<ID>MagicNumber:Weather2.kt$Weather2.Companion$32</ID>
|
<ID>MagicNumber:Weather2.kt$Weather2.Companion$32</ID>
|
||||||
<ID>MagicNumber:Weather2.kt$Weather2.Companion$404</ID>
|
<ID>MagicNumber:Weather2.kt$Weather2.Companion$404</ID>
|
||||||
|
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
|
@ -1,5 +1,5 @@
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
#Generated by the Semver Plugin for Gradle
|
#Generated by the Semver Plugin for Gradle
|
||||||
#Wed Jan 19 15:20:26 PST 2022
|
#Sat Feb 12 23:41:45 PST 2022
|
||||||
version.buildmeta=001
|
version.buildmeta=023
|
||||||
version.major=0
|
version.major=0
|
||||||
version.minor=8
|
version.minor=8
|
||||||
version.patch=0
|
version.patch=0
|
||||||
version.prerelease=rc
|
version.prerelease=rc
|
||||||
version.project=mobibot
|
version.project=mobibot
|
||||||
version.semver=0.8.0-rc+001
|
version.semver=0.8.0-rc+023
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue