@@ -54,27 +54,28 @@ dependencies {
5454 implementation(enforcedPlatform(libs.quarkus.bom))
5555 implementation(" io.quarkus:quarkus-container-image-docker" )
5656
57+ testImplementation(enforcedPlatform(libs.quarkus.bom))
5758 testImplementation(" io.quarkus:quarkus-junit5" )
5859
59- testImplementation (testFixtures(project(" :polaris-runtime-service" )))
60- testImplementation (project(" :polaris-runtime-test-common" ))
61- testImplementation (project(" :polaris-core" ))
62- testImplementation (project(" :polaris-api-management-model" ))
63- testImplementation (project(" :polaris-minio-testcontainer" ))
60+ intTestImplementation (testFixtures(project(" :polaris-runtime-service" )))
61+ intTestImplementation (project(" :polaris-runtime-test-common" ))
62+ intTestImplementation (project(" :polaris-core" ))
63+ intTestImplementation (project(" :polaris-api-management-model" ))
64+ intTestImplementation (project(" :polaris-minio-testcontainer" ))
6465
65- testImplementation (project(" :polaris-tests" )) {
66+ intTestImplementation (project(" :polaris-tests" )) {
6667 // exclude all spark dependencies
6768 exclude(group = " org.apache.iceberg" , module = " iceberg-spark-3.5_2.12" )
6869 exclude(group = " org.apache.iceberg" , module = " iceberg-spark-extensions-3.5_2.12" )
6970 exclude(group = " org.apache.spark" , module = " spark-sql_2.12" )
7071 }
7172
72- testImplementation (platform(libs.iceberg.bom))
73- testImplementation (" org.apache.iceberg:iceberg-api" )
74- testImplementation (" org.apache.iceberg:iceberg-core" )
75- testImplementation (" org.apache.iceberg:iceberg-aws" )
76- testImplementation (" org.apache.iceberg:iceberg-api:${libs.versions.iceberg.get()} :tests" )
77- testImplementation (" org.apache.iceberg:iceberg-core:${libs.versions.iceberg.get()} :tests" )
73+ intTestImplementation (platform(libs.iceberg.bom))
74+ intTestImplementation (" org.apache.iceberg:iceberg-api" )
75+ intTestImplementation (" org.apache.iceberg:iceberg-core" )
76+ intTestImplementation (" org.apache.iceberg:iceberg-aws" )
77+ intTestImplementation (" org.apache.iceberg:iceberg-api:${libs.versions.iceberg.get()} :tests" )
78+ intTestImplementation (" org.apache.iceberg:iceberg-core:${libs.versions.iceberg.get()} :tests" )
7879
7980 // This dependency brings in RESTEasy Classic, which conflicts with Quarkus RESTEasy Reactive;
8081 // it must not be present during Quarkus augmentation otherwise Quarkus tests won't start.
0 commit comments