tolbertam commented on code in PR #2045:
URL: 
https://github.com/apache/cassandra-java-driver/pull/2045#discussion_r2975901380


##########
osgi-tests/src/test/java/com/datastax/oss/driver/internal/osgi/support/BundleOptions.java:
##########
@@ -51,23 +53,23 @@ public static CompositeOption applicationBundle() {
             systemProperty("cassandra.contactpoints").value("127.0.0.1"),
             systemProperty("cassandra.port").value("9042"),
             systemProperty("cassandra.keyspace").value("test_osgi"),
-            bundle("reference:file:target/classes"));
+            bundle("reference:file:target/classes").startLevel(3));
   }
 
   public static UrlProvisionOption driverCoreBundle() {
     return bundle("reference:file:../core/target/classes");
   }
 
   public static UrlProvisionOption driverCoreShadedBundle() {
-    return bundle("reference:file:../core-shaded/target/classes");
+    return 
bundle("reference:file:../core-shaded/target/classes").startLevel(1);
   }
 
   public static UrlProvisionOption driverQueryBuilderBundle() {
-    return bundle("reference:file:../query-builder/target/classes");
+    return 
bundle("reference:file:../query-builder/target/classes").startLevel(2);

Review Comment:
   Guessing that deferring these later than the shaded bundle (and other deps) 
allows these to more reliably depend on the guava dep being there?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to