[build] - Update gradle build to make assemble invoke integration test compile task (#6688)

Signed-off-by: Usman Saleem <usman@usmans.info>
pull/6696/head
Usman Saleem 9 months ago committed by GitHub
parent 244c814ddf
commit 5b230e5880
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 7
      build.gradle

@ -540,6 +540,13 @@ subprojects {
dependencies { jmh 'org.slf4j:slf4j-api' }
}
// making sure assemble task invokes integration test compile
afterEvaluate { project ->
if (project.tasks.findByName('compileIntegrationTestJava')) {
project.tasks.assemble.dependsOn compileIntegrationTestJava
}
}
}
jar { enabled = false }

Loading…
Cancel
Save