Skip to content

Commit b5a3c3b

Browse files
committed
Fix comment
1 parent e5322b5 commit b5a3c3b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/framework/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ apply plugin: 'elasticsearch.build'
1111
apply plugin: 'elasticsearch.publish'
1212

1313
configurations {
14-
// we do not wanto expose the inheritedly conflict in transitive dependencies by
15-
// bringing in different versions of junit, hamcrest and randomizedtesting
16-
// so we exclude them here and re-declare the versions we want below
17-
// to keep the example build happy that does not align transitive dependencies.
14+
// we do not want to expose a version conflict in transitive dependencies by
15+
// bringing in different versions of hamcrest.
16+
// Therefore we exclude transitive deps on hamcrest here as we have a direct
17+
// dependency on a newer version.
1818
runtimeElements {
1919
exclude group: 'org.hamcrest'
2020
}
@@ -27,7 +27,7 @@ dependencies {
2727
api project(":libs:cli")
2828
api project(":libs:entitlement:bridge")
2929
api "com.carrotsearch.randomizedtesting:randomizedtesting-runner:${versions.randomizedrunner}"
30-
api("junit:junit:${versions.junit}")
30+
api("junit:junit:${versions.junit}")
3131
api "org.hamcrest:hamcrest:${versions.hamcrest}"
3232
api "org.apache.lucene:lucene-test-framework:${versions.lucene}"
3333
api "org.apache.lucene:lucene-codecs:${versions.lucene}"

0 commit comments

Comments
 (0)