Skip to content

Commit

Permalink
drop commons-io from bootstrap classpath.
Browse files Browse the repository at this point in the history
It's no longer included in the current gradle distribution.

Breaks support for issue #2.
  • Loading branch information
keturn committed May 17, 2020
1 parent 66aba61 commit d8e2f02
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 7 deletions.
6 changes: 0 additions & 6 deletions Test.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,4 @@ class Test extends GroovyTestCase {
def ivyHome = report.getIvyHomeURL()
assertTrue(ivyHome.contains("apache.org"))
}

void testCLI() {
def cli = new CliBuilder(usage: 'Usage')
def expected = 'Usage'
assertToString(cli.usage, expected)
}
}
Binary file modified gradle/wrapper/groovy-wrapper.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public void start(String[] args, File gradleHome) throws Exception {
final URL[] urls = {
findJar("groovy-all", gradleHome, "lib"),
findJar("ivy", gradleHome, "lib/plugins"),
findJar("commons-cli", gradleHome, "lib/plugins"),
findJar("junit", gradleHome, "lib/plugins")
};
try (URLClassLoader contextClassLoader = new URLClassLoader(urls, ClassLoader.getSystemClassLoader().getParent())) {
Expand Down

0 comments on commit d8e2f02

Please sign in to comment.