Skip to content

Commit

Permalink
Merge branch 'master' into 176-allowInStaticInitDiscoverability
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbasle committed Mar 29, 2021
2 parents 82d3fb2 + 7dd8d30 commit 32c596e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions agent/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ plugins {
}

description = "BlockHound Java Agent"
ext.detailedDescription = "Java agent to detect blocking calls from non-blocking threads."

testSets {
jarFileTest
Expand Down
4 changes: 4 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,8 @@ subprojects {
}
}
}

tasks.withType(GenerateModuleMetadata) {
enabled = false
}
}
6 changes: 4 additions & 2 deletions gradle/publishing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ plugins.withType(MavenPublishPlugin) {
publications {
mavenJava(MavenPublication) { publication ->
pom {
description = 'Java agent to detect blocking calls from non-blocking threads.'
name = project.description ?: description
afterEvaluate {
name = project.description
description = project.detailedDescription
}
url = 'https://github.com/reactor/BlockHound'
licenses {
license {
Expand Down
1 change: 1 addition & 0 deletions junit-platform/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ plugins {
}

description = "BlockHound JUnit Platform Integration"
ext.detailedDescription = "Integrates the BlockHound Java agent to detect blocking calls in JUnit Platform-based tests."

sourceCompatibility = targetCompatibility = 8

Expand Down

0 comments on commit 32c596e

Please sign in to comment.