Skip to content

Commit 503b832

Browse files
authored
build: fix gradle warnings (#29)
I could not fix them all because some are in the wonderful jib gradle plugin. We'll have to wait for them to fix those.
1 parent cedb175 commit 503b832

File tree

6 files changed

+4
-10
lines changed

6 files changed

+4
-10
lines changed

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ repositories {
1010
dependencies {
1111
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10")
1212
implementation("org.jetbrains.kotlin:kotlin-serialization:1.9.10")
13-
implementation("com.adarshr:gradle-test-logger-plugin:3.2.0")
13+
implementation("com.adarshr:gradle-test-logger-plugin:4.0.0")
1414
implementation("org.jetbrains.kotlinx:kover:0.6.1")
1515
}

buildSrc/src/main/kotlin/typestream.version-info.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ tasks.register("createProperties") {
66
dependsOn("processResources")
77

88
doLast {
9-
val propertiesFile = File("${buildDir}/resources/main/version-info.properties")
9+
val propertiesFile = File("${layout.buildDirectory.get()}/resources/main/version-info.properties")
1010
val stdout = ByteArrayOutputStream()
1111
rootProject.exec {
1212
commandLine("git", "rev-parse", "--verify", "--short", "HEAD")

libs/konfig/build.gradle.kts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ plugins {
22
id("typestream.kotlin-conventions")
33
}
44

5-
group = "io.typestream"
6-
75
dependencies {
8-
testImplementation("io.mockk:mockk:1.12.3")
6+
testImplementation("io.mockk:mockk:1.13.4")
97
}

libs/option/build.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
plugins {
22
id("typestream.kotlin-conventions")
33
}
4-
5-
group = "io.typestream"

libs/version-info/build.gradle.kts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,3 @@ plugins {
44
//TODO It would be nice to package the code here and the gradle task it depends on in the same place.
55
id("typestream.version-info")
66
}
7-
8-
group = "io.typestream"

tools/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id("typestream.kotlin-conventions")
33
id("typestream.version-info")
4-
id("com.google.cloud.tools.jib") version "3.3.2"
4+
id("com.google.cloud.tools.jib") version "3.4.0"
55
application
66
}
77

0 commit comments

Comments
 (0)