vthacker commented on code in PR #15396:
URL: https://github.com/apache/lucene/pull/15396#discussion_r2485144744
##########
build-tools/build-infra/ecj-source.gradle:
##########
@@ -24,20 +24,16 @@
boolean useDropMirrorForEcj = true
if (useDropMirrorForEcj) {
repositories {
- exclusiveContent {
- forRepository {
- ivy {
- url = 'https://s3.amazonaws.com/lucene-testdata/temp-repo/ecj/'
- patternLayout {
- artifact "[artifact]-[revision](.[ext])"
- m2compatible = true
- }
- metadataSources {
- it.artifact()
- }
- }
+ ivy {
+ url = 'https://s3.amazonaws.com/lucene-testdata/temp-repo/ecj/'
+ patternLayout {
+ artifact "[artifact]-[revision](.[ext])"
+ m2compatible = true
}
- filter {
+ metadataSources {
+ it.artifact()
+ }
+ content {
Review Comment:
filter is only available within the exclusiveContent block.
Using content { includeGroup "org.eclipse.jdt" } instead for filtering
--
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]