From c18099cda5d1f19bf98a8aad0687b08a7864f8cf Mon Sep 17 00:00:00 2001 From: Federico Nafria Date: Tue, 25 Aug 2020 21:40:35 +0200 Subject: [PATCH] cUrl - use dependencies instead of style The response was 404 with the `style` parameter. --- README.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index aee5488..a484d74 100644 --- a/README.adoc +++ b/README.adoc @@ -43,7 +43,7 @@ You can use the Initializr HTTP API https://docs.spring.io/initializr/docs/curre [source] ---- $ mkdir blog && cd blog -$ curl https://start.spring.io/starter.zip -d language=kotlin -d style=web,mustache,jpa,h2,devtools -d packageName=com.example.blog -d name=Blog -o blog.zip +$ curl https://start.spring.io/starter.zip -d language=kotlin -d dependencies=web,mustache,jpa,h2,devtools -d packageName=com.example.blog -d name=Blog -o blog.zip ---- Add `-d type=gradle-project` if you want to use Gradle.