We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a504a46 commit d5d73cdCopy full SHA for d5d73cd
solr/benchmark/build.gradle
@@ -39,19 +39,10 @@ jmhReport {
39
40
task echoCp {
41
doLast {
42
- print toPath((sourceSets.main.runtimeClasspath + sourceSets.main.resources).files)
+ logger.lifecycle((sourceSets.main.runtimeClasspath + sourceSets.main.resources).asPath)
43
}
44
45
46
-private static String toPath(Set<File> classpathUnderTest) {
47
- StringBuilder sb = new StringBuilder();
48
- for (File entry : classpathUnderTest) {
49
- sb.append(entry.getAbsolutePath());
50
- sb.append(File.pathSeparatorChar);
51
- }
52
- return sb.toString();
53
-}
54
-
55
dependencies {
56
implementation project(':solr:test-framework')
57
0 commit comments