diff --git a/src/docs/asciidoc/v4/getting-started.adoc b/src/docs/asciidoc/v4/getting-started.adoc
index 08fcd18..ae89711 100644
--- a/src/docs/asciidoc/v4/getting-started.adoc
+++ b/src/docs/asciidoc/v4/getting-started.adoc
@@ -3,6 +3,7 @@
For the integration between spring-boot and swagger-ui, add the library to the list of your project dependencies (No additional configuration is needed)
+=== Maven
[source,xml, subs="attributes+"]
----
@@ -12,6 +13,16 @@ For the integration between spring-boot and swagger-ui, add the library to the l
----
+=== Gradle
+[source,gradle, subs="attributes+"]
+implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:{springdoc-upcoming-version}'
+
+
+For example, using version 2.8.11:
+[source,gradle]
+----
+implementation 'org.springdoc:springdoc-openapi-starter-webmvc-ui:2.8.11'
+----
This will automatically deploy swagger-ui to a spring-boot application:
@@ -43,4 +54,4 @@ springdoc.swagger-ui.path=/swagger-ui.html
-++++
\ No newline at end of file
+++++