From 5ed5820f92ff8d78b853b4a2ee6ab2ff52b7d607 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Fri, 4 Aug 2023 16:23:31 +0200 Subject: [PATCH] Clarify expected jar size in getting started doc Closes gh-34514 --- .../src/docs/asciidoc/getting-started/first-application.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/first-application.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/first-application.adoc index 6d6725bd320..bc652fd33e3 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/first-application.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/getting-started/first-application.adoc @@ -283,7 +283,7 @@ Save your `pom.xml` and run `mvn package` from the command line, as follows: ---- If you look in the `target` directory, you should see `myproject-0.0.1-SNAPSHOT.jar`. -The file should be around 10 MB in size. +The file should be around 18 MB in size. If you want to peek inside, you can use `jar tvf`, as follows: [source,shell,indent=0,subs="verbatim"]