Skip to content

Commit caf823b

Browse files
authored
Upgrade apicurio-codegen to 1.2.0.Final (#1015)
1 parent bbe84e7 commit caf823b

File tree

4 files changed

+21
-3
lines changed

4 files changed

+21
-3
lines changed

docs/modules/ROOT/pages/includes/server-getting-started.adoc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@ Add the following dependency to your project's `pom.xml` file:
1010
</dependency>
1111
----
1212

13+
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:
14+
15+
[source,xml]
16+
----
17+
<dependency>
18+
<groupId>io.quarkus</groupId>
19+
<artifactId>quarkus-smallrye-openapi</artifactId>
20+
</dependency>
21+
----
22+
1323
Note that since this extension has not been yet released, you'll need a local build of the dependency.
1424

1525
You will also need to add or update the `quarkus-maven-plugin` configuration with the following:

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3030
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
3131
<quarkus.version>3.21.0</quarkus.version>
32-
<apicurio.version>1.1.1.Final</apicurio.version>
32+
<apicurio.version>1.2.0.Final</apicurio.version>
3333
<version.com.github.javaparser>3.26.3</version.com.github.javaparser>
3434
<version.org.assertj>3.27.3</version.org.assertj>
3535
<version.org.eclipse.microprofile.fault-tolerance>4.1.2</version.org.eclipse.microprofile.fault-tolerance>

server/integration-tests/reactive/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@
4848
<artifactId>rest-assured</artifactId>
4949
<scope>test</scope>
5050
</dependency>
51+
<dependency>
52+
<groupId>io.quarkus</groupId>
53+
<artifactId>quarkus-smallrye-openapi</artifactId>
54+
</dependency>
5155
</dependencies>
5256

5357
<build>
@@ -106,4 +110,4 @@
106110
</plugin>
107111
</plugins>
108112
</build>
109-
</project>
113+
</project>

server/integration-tests/resteasy/pom.xml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@
4848
<artifactId>rest-assured</artifactId>
4949
<scope>test</scope>
5050
</dependency>
51+
<dependency>
52+
<groupId>io.quarkus</groupId>
53+
<artifactId>quarkus-smallrye-openapi</artifactId>
54+
</dependency>
5155
</dependencies>
5256

5357
<build>
@@ -106,4 +110,4 @@
106110
</plugin>
107111
</plugins>
108112
</build>
109-
</project>
113+
</project>

0 commit comments

Comments
 (0)