Skip to content

Commit

Permalink
fix: remove filter for org.eclipse packages
Browse files Browse the repository at this point in the history
This filtering was in violation with TRG 7.01.
  • Loading branch information
borisrizov-zf committed Dec 6, 2023
1 parent 797814c commit af9a9e5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ tasks.register('dashDependencies') { dashDependencies ->
}
}

def filtered = deps.findAll(d -> !d.startsWith('org.eclipse')).unique().sort()
filtered.each { logger.quiet("{}", it) }
file("deps.txt").write(filtered.join('\n'))
def uniqueSorted = deps.unique().sort()
uniqueSorted.each { logger.quiet("{}", it) }
file("deps.txt").write(uniqueSorted.join('\n'))
}
}

Expand Down

0 comments on commit af9a9e5

Please sign in to comment.