Skip to content

Commit 7270ca5

Browse files
committed
Polish "Remove deprecated Joda-Time support"
See gh-19699
1 parent c4592e7 commit 7270ca5

File tree

3 files changed

+2
-9
lines changed

3 files changed

+2
-9
lines changed

Diff for: spring-boot-project/spring-boot-cli/src/test/java/org/springframework/boot/cli/GrabCommandIntegrationTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ void grab() throws Exception {
6161
System.setProperty("groovy.grape.report.downloads", "true");
6262
// Use --autoconfigure=false to limit the amount of downloaded dependencies
6363
String output = this.cli.grab("grab.groovy", "--autoconfigure=false");
64-
assertThat(new File(this.cli.getTemp(), "repository/joda-time/joda-time")).isDirectory();
64+
assertThat(new File(this.cli.getTemp(), "repository/com/fasterxml/jackson/core/jackson-core")).isDirectory();
6565
assertThat(output).contains("Downloading: ");
6666
}
6767

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@Grab('joda-time')
1+
@Grab('jackson-core')
22
class GrabTest {
33

44
}

Diff for: spring-boot-project/spring-boot-dependencies/build.gradle

-7
Original file line numberDiff line numberDiff line change
@@ -911,13 +911,6 @@ bom {
911911
]
912912
}
913913
}
914-
library('Joda Time', '2.10.5') {
915-
group('joda-time') {
916-
modules = [
917-
'joda-time'
918-
]
919-
}
920-
}
921914
library('Johnzon', '1.2.2') {
922915
group('org.apache.johnzon') {
923916
modules = [

0 commit comments

Comments
 (0)