Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/modules/ROOT/pages/includes/server-getting-started.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,16 @@ Add the following dependency to your project's `pom.xml` file:
</dependency>
----

By default, the generated resources are annotated with Microprofile OpenAPI annotations, add the `io.quarkus:quarkus-smallrye-openapi` dependency to your project’s `pom.xml` file:

[source,xml]
----
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-smallrye-openapi</artifactId>
</dependency>
----

Note that since this extension has not been yet released, you'll need a local build of the dependency.

You will also need to add or update the `quarkus-maven-plugin` configuration with the following:
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<quarkus.version>3.21.0</quarkus.version>
<apicurio.version>1.1.1.Final</apicurio.version>
<apicurio.version>1.2.0.Final</apicurio.version>
<version.com.github.javaparser>3.26.3</version.com.github.javaparser>
<version.org.assertj>3.27.3</version.org.assertj>
<version.org.eclipse.microprofile.fault-tolerance>4.1.2</version.org.eclipse.microprofile.fault-tolerance>
Expand Down
6 changes: 5 additions & 1 deletion server/integration-tests/reactive/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@
<artifactId>rest-assured</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-smallrye-openapi</artifactId>
</dependency>
</dependencies>

<build>
Expand Down Expand Up @@ -106,4 +110,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
6 changes: 5 additions & 1 deletion server/integration-tests/resteasy/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@
<artifactId>rest-assured</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-smallrye-openapi</artifactId>
</dependency>
</dependencies>

<build>
Expand Down Expand Up @@ -106,4 +110,4 @@
</plugin>
</plugins>
</build>
</project>
</project>
Loading