Skip to content

Commit 912bdde

Browse files
authored
Properly fix the osgi smoke test bnd task setup (#10039)
1 parent 1100e7d commit 912bdde

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

dd-smoke-tests/osgi/build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,6 @@ def clientBundle = tasks.register('clientBundle', Bundle) {
7070
attributes('Bundle-Activator': 'datadog.smoketest.osgi.client.Activator')
7171
}
7272
}
73-
clientBundle.get()
7473

7574
def messagingBundle = tasks.register('messagingBundle', Bundle) {
7675
archiveClassifier = 'messaging'
@@ -99,6 +98,10 @@ def subscribingBundle = tasks.register('subscribingBundle', Bundle) {
9998
}
10099
}
101100

101+
tasks.named("check") {
102+
dependsOn commonBundle, clientBundle, messagingBundle, publishingBundle, subscribingBundle, jarTask
103+
}
104+
102105
tasks.withType(Test).configureEach {
103106
dependsOn commonBundle, clientBundle, messagingBundle, publishingBundle, subscribingBundle, jarTask
104107

0 commit comments

Comments
 (0)