Skip to content

Commit fba2cf6

Browse files
committed
JAVA-3071: OsgiGraphIT.test_graph fails with dse-6.8.30
Test fails because tinkerpop classes cannot be loaded which gates enabling GraphRequest* processors Add missing dependencies required by TinkerIoRegistryV3d0 to the osgi testing bundle - com.sun.mail:mailapi:1.6.4 - org.apache.commons:commons-text:1.8 - org.apache.commons:commons-configuration2:2.7
1 parent a3a8a4f commit fba2cf6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

osgi-tests/src/test/java/com/datastax/oss/driver/internal/osgi/support/BundleOptions.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,9 @@ public static CompositeOption tinkerpopBundles() {
152152
.overwriteManifest(WrappedUrlProvisionOption.OverwriteMode.FULL),
153153
// Note: the versions below are hard-coded because they shouldn't change very often,
154154
// but if the tests fail because of them, we should consider parameterizing them
155-
mavenBundle("commons-configuration", "commons-configuration", "1.10"),
155+
mavenBundle("com.sun.mail", "mailapi", "1.6.4"),
156+
mavenBundle("org.apache.commons", "commons-text", "1.8"),
157+
mavenBundle("org.apache.commons", "commons-configuration2", "2.7"),
156158
CoreOptions.wrappedBundle(mavenBundle("commons-logging", "commons-logging", "1.1.1"))
157159
.exports("org.apache.commons.logging.*")
158160
.bundleVersion("1.1.1")

0 commit comments

Comments
 (0)