Commit 7270ca5c authored by Stephane Nicoll's avatar Stephane Nicoll

Polish "Remove deprecated Joda-Time support"

See gh-19699
parent c4592e7d
...@@ -61,7 +61,7 @@ class GrabCommandIntegrationTests { ...@@ -61,7 +61,7 @@ class GrabCommandIntegrationTests {
System.setProperty("groovy.grape.report.downloads", "true"); System.setProperty("groovy.grape.report.downloads", "true");
// Use --autoconfigure=false to limit the amount of downloaded dependencies // Use --autoconfigure=false to limit the amount of downloaded dependencies
String output = this.cli.grab("grab.groovy", "--autoconfigure=false"); String output = this.cli.grab("grab.groovy", "--autoconfigure=false");
assertThat(new File(this.cli.getTemp(), "repository/joda-time/joda-time")).isDirectory(); assertThat(new File(this.cli.getTemp(), "repository/com/fasterxml/jackson/core/jackson-core")).isDirectory();
assertThat(output).contains("Downloading: "); assertThat(output).contains("Downloading: ");
} }
......
@Grab('joda-time') @Grab('jackson-core')
class GrabTest { class GrabTest {
} }
...@@ -911,13 +911,6 @@ bom { ...@@ -911,13 +911,6 @@ bom {
] ]
} }
} }
library('Joda Time', '2.10.5') {
group('joda-time') {
modules = [
'joda-time'
]
}
}
library('Johnzon', '1.2.2') { library('Johnzon', '1.2.2') {
group('org.apache.johnzon') { group('org.apache.johnzon') {
modules = [ modules = [
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment