Skip to content

Commit

Permalink
Merge branch 'main' into wrapperbot/tests-execution-chart/gradle-wrap…
Browse files Browse the repository at this point in the history
…per-8.11.1
  • Loading branch information
platan authored Dec 20, 2024
2 parents 2f75512 + 139f09d commit d8682aa
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
with:
arguments: build
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
- name: Create tests execution report for all test projects
Expand Down
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import pl.allegro.tech.build.axion.release.domain.hooks.HookContext

plugins {
id("org.jetbrains.kotlin.jvm") version "2.0.0"
id("org.jetbrains.kotlin.jvm") version "2.1.0"
`java-gradle-plugin`
`maven-publish`
groovy
id("com.gradle.plugin-publish") version "1.3.0"
id("com.diffplug.spotless") version "6.25.0"
id("com.github.jakemarsden.git-hooks") version "0.0.2"
id("io.github.platan.tests-execution-chart") version "0.6.1"
kotlin("plugin.serialization") version "2.0.0"
kotlin("plugin.serialization") version "2.1.0"
id("pl.allegro.tech.build.axion-release") version "1.18.2"
id("com.github.ben-manes.versions") version "0.51.0"
id("io.github.gradle-nexus.publish-plugin") version "2.0.0-rc-1"
id("org.gradle.wrapper-upgrade") version "0.11.4"
id("org.gradle.wrapper-upgrade") version "0.12"
}

scmVersion {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class MermaidGanttDiagramFormatterToSvgConversionSpec extends Specification {
then:
process.consumeProcessOutput(processOutput, processError)
process.waitForOrKill(60000)
process.waitForOrKill(300000)
assert process.exitValue() == 0, "Process finished with exit code ${process.exitValue()}\nOutput: $processOutput\nError: $processError"
}
Expand Down
8 changes: 4 additions & 4 deletions tests-execution-chart-commons/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
plugins {
id("org.jetbrains.kotlin.jvm") version "2.0.0"
kotlin("plugin.serialization") version "2.0.0"
id("org.jetbrains.kotlin.jvm") version "2.1.0"
kotlin("plugin.serialization") version "2.1.0"
`maven-publish`
id("org.jetbrains.kotlinx.kover") version "0.8.3"
id("org.jetbrains.kotlinx.kover") version "0.9.0"
signing
id("io.github.platan.tests-execution-chart")
}

dependencies {
api("org.jetbrains.kotlin:kotlin-stdlib")
implementation("org.apache.commons:commons-text:1.12.0")
implementation("org.apache.commons:commons-text:1.13.0")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.1")

testImplementation(platform("org.codehaus.groovy:groovy-bom:3.0.22"))
Expand Down

0 comments on commit d8682aa

Please sign in to comment.