Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 9 additions & 13 deletions build-tools/build-infra/ecj-source.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

filter is only available within the exclusiveContent block.

Using content { includeGroup "org.eclipse.jdt" } instead for filtering

includeGroup "org.eclipse.jdt"
}
}
Expand Down