Skip to content

Commit

Permalink
Merge pull request #242 from cqse/ts/34267_module_metadata
Browse files Browse the repository at this point in the history
TS-34267 Fix Gradle module metadata
  • Loading branch information
AnonymFx committed May 8, 2023
2 parents fcac010 + d4bc93d commit 12c326c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ We use [semantic versioning](http://semver.org/):
- PATCH version when you make backwards compatible bug fixes.

# Next Release
- [fix] _report-generator_: Fixed Gradle module metadata which resulted in `Could not find org.jacoco.agent-0.8.8-runtime`

# 30.0.0
- [breaking change] _teamscale-maven-plugin_: Made plugin compatible with surefire 3.0.0. Replace the `teamscale-surefire-provider` dependency with `impacted-test-engine` in your pom.xml files.
Expand Down
2 changes: 2 additions & 0 deletions report-generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ dependencies {
implementation(libs.jacoco.agent) {
artifact {
classifier = "runtime"
// Needs to be explicitly specified to end up in the Gradle Module metadata
extension = "jar"
}
}

Expand Down

0 comments on commit 12c326c

Please sign in to comment.