Skip to content

Commit 16b5f27

Browse files
authored
Fix broken gradle task: testShadowJar (#3320)
It isn't used very often, but it is referenced in the comment to `FDBRecordStorePerformanceTest.main`.
1 parent 2a26588 commit 16b5f27

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fdb-record-layer-core/fdb-record-layer-core.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ task testShadowJar(type: com.github.jengelman.gradle.plugins.shadow.tasks.Shadow
6363
archiveClassifier = 'standalone-tests'
6464
from sourceSets.main.output
6565
from sourceSets.test.output
66-
configurations = [ project.configurations.testRuntimeOnly ]
66+
configurations = [ project.configurations.testRuntimeClasspath ]
6767
manifest {
6868
inheritFrom project.tasks.jar.manifest
6969
attributes 'Main-Class': 'com.apple.foundationdb.record.provider.foundationdb.FDBRecordStorePerformanceTest',

0 commit comments

Comments
 (0)