Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
FWDekker committed Apr 15, 2024
1 parent 230dac3 commit 67138c5
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 19 deletions.
14 changes: 7 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,24 +17,24 @@ fun properties(key: String) = project.findProperty(key).toString()
/// Plugins
plugins {
// Compilation
id("org.jetbrains.kotlin.jvm") version "1.8.0" // Set to latest version compatible with `pluginSinceBuild`, cf. https://plugins.jetbrains.com/docs/intellij/using-kotlin.html#kotlin-standard-library
id("org.jetbrains.intellij") version "1.16.1"
id("org.jetbrains.kotlin.jvm") version "1.8.20" // Set to latest version compatible with `pluginSinceBuild`, cf. https://plugins.jetbrains.com/docs/intellij/using-kotlin.html#kotlin-standard-library
id("org.jetbrains.intellij") version "1.17.3"

// Tests/coverage
id("org.jetbrains.kotlinx.kover") version "0.7.5"
id("org.jetbrains.kotlinx.kover") version "0.7.6"

// Static analysis
id("io.gitlab.arturbosch.detekt") version "1.23.4" // cf. `gradle.properties`
id("io.gitlab.arturbosch.detekt") version "1.23.6" // cf. `gradle.properties`

// Documentation
id("org.jetbrains.changelog") version "2.2.0"
id("org.jetbrains.dokka") version "1.9.10" // cf. `buildscript { dependencies` below and `gradle.properties`
id("org.jetbrains.dokka") version "1.9.20" // cf. `buildscript { dependencies` below and `gradle.properties`
}

buildscript {
dependencies {
classpath("org.jetbrains.dokka", "dokka-base", "1.9.10") // cf. `plugins` above and `gradle.properties`
classpath("org.jetbrains.dokka", "versioning-plugin", "1.9.10") // cf. `plugins` above and `gradle.properties`
classpath("org.jetbrains.dokka", "dokka-base", "1.9.20") // cf. `plugins` above and `gradle.properties`
classpath("org.jetbrains.dokka", "versioning-plugin", "1.9.20") // cf. `plugins` above and `gradle.properties`
}
}

Expand Down
22 changes: 11 additions & 11 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
group=com.fwdekker
# Version number should also be updated in `com.fwdekker.randomness.PersistentSettings.Companion.CURRENT_VERSION`.
version=3.2.0
version=3.2.0-dev

# Compatibility
# * `pluginSinceBuild`:
Expand All @@ -11,9 +11,9 @@ version=3.2.0
# * `pluginVerifierIdeVersions`:
# For every supported version minor release, include both the IC and the CL release with the highest patch version
# See also https://data.services.jetbrains.com/products?fields=name,releases.version,releases.build&code=IC,CL.
pluginSinceBuild=231.0
intellijVersion=2023.1
pluginVerifierIdeVersions=IC-2023.1.5, IC-2023.2.5, IC-2023.3, CL-2023.1.5, CL-2023.2.2, CL-2023.3
pluginSinceBuild=232.0
intellijVersion=2023.2
pluginVerifierIdeVersions=IC-2023.2.6, IC-2023.3.6, IC-2024.1.1, CL-2023.2.3, CL-2023.3.4, CL-2024.1

# Targets
# * Java:
Expand All @@ -25,22 +25,22 @@ pluginVerifierIdeVersions=IC-2023.1.5, IC-2023.2.5, IC-2023.3, CL-2023.1.5, CL-2
# https://plugins.jetbrains.com/docs/intellij/using-kotlin.html#kotlin-standard-library.
# * Ensure the version of the `org.jetbrains.kotlin.jvm` in `build.gradle.kts` is updated accordingly.
javaVersion=17
kotlinVersion=1.8
kotlinVersion=1.8.20

# Dependencies
# * Detekt should also be updated in `plugins` block.
# * Dokka should also be updated in `plugins` block and in `buildscript { dependencies`.
# * RgxGen should also be updated in `string.ui.value.pattern_help_url` property in `randomness.properties`.
assertjSwingVersion=3.17.1
dateparserVersion=1.0.11
detektVersion=1.23.3
dokkaVersion=1.9.10
detektVersion=1.23.6
dokkaVersion=1.9.20
githubCore=2.1.5
junitVersion=5.10.1
junitRunnerVersion=1.10.1
kotestVersion=5.8.0
junitVersion=5.10.2
junitRunnerVersion=1.10.2
kotestVersion=5.8.1
rgxgenVersion=1.4
uuidGeneratorVersion=4.3.0
uuidGeneratorVersion=5.0.0

# Gradle
org.gradle.caching=true
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip

0 comments on commit 67138c5

Please sign in to comment.