Skip to content

Commit 0bd3163

Browse files
author
NotJansel
committed
update dependencies
1 parent 9d8ca1e commit 0bd3163

File tree

5 files changed

+22
-17
lines changed

5 files changed

+22
-17
lines changed

build.gradle.kts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ fun String.runCommand(
3434

3535

3636
group = "org.hyacinthbots.allium"
37-
// version = "0.6.0-build.local-" + "git rev-parse --short=8 HEAD".runCommand(workingDir = rootDir) + "-" + "git branch --show-current".runCommand(workingDir = rootDir).replace("/", ".")
37+
version = "0.6.0-build.local-" + "git rev-parse --short=8 HEAD".runCommand(workingDir = rootDir) + "-" + "git branch --show-current".runCommand(workingDir = rootDir).replace("/", ".")
3838
var buildTime = Date().time / 1000
39-
version = "0.6.0"
39+
// version = "0.6.0"
4040
// The current LTS Java version
4141
val javaVersion = 17
4242

@@ -123,7 +123,7 @@ tasks {
123123
withType<KotlinCompile> {
124124
kotlinOptions {
125125
jvmTarget = javaVersion.toString()
126-
languageVersion = "1.8" // The current major revision of Kotlin
126+
languageVersion = "1.9" // The current major revision of Kotlin
127127
incremental = true
128128
freeCompilerArgs = listOf("-opt-in=kotlin.RequiresOptIn")
129129
}
@@ -142,7 +142,7 @@ tasks {
142142
Update gradle by changing `gradleVersion` below to the new version,
143143
then run `./gradlew wrapper` twice to update the scripts properly.
144144
*/
145-
gradleVersion = "8.2"
145+
gradleVersion = "8.4"
146146
distributionType = Wrapper.DistributionType.BIN
147147
}
148148
}
@@ -156,5 +156,5 @@ java {
156156
detekt {
157157
buildUponDefaultConfig = true
158158
autoCorrect = true
159-
config = rootProject.files("detekt.yml")
159+
config.setFrom(rootProject.files("detekt.yml"))
160160
}

gradle/wrapper/gradle-wrapper.jar

1.61 KB
Binary file not shown.
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
44
networkTimeout=10000
5+
validateDistributionUrl=true
56
zipStoreBase=GRADLE_USER_HOME
67
zipStorePath=wrapper/dists

gradlew

Lines changed: 13 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs.versions.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
detekt = "1.23.1" # Note: Plugin versions must be updated in the settings.gradle.kts too
33

44
jansi = "2.4.0"
5-
kord-extensions = "1.5.9-SNAPSHOT"
5+
kord-extensions = "1.5.10-SNAPSHOT"
66
kx-ser = "1.6.0"
77
logging = "3.0.5"
88
logback = "1.4.11"
@@ -11,7 +11,7 @@ gson = "2.10.1"
1111
doc-gen = "0.1.2"
1212
kmongo = "4.9.0"
1313
groovy = "3.0.13"
14-
ktor = "2.3.2"
14+
ktor = "2.3.5"
1515

1616
[libraries]
1717
detekt = { module = "io.gitlab.arturbosch.detekt:detekt-formatting", version.ref = "detekt" }

0 commit comments

Comments
 (0)