Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: instrument vertx-web-openapi-router #254

Merged
merged 1 commit into from
Oct 20, 2023
Merged
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
14 changes: 13 additions & 1 deletion vertx-lang-kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,11 @@
<artifactId>vertx-web-validation</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-web-openapi-router</artifactId>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You also need to add the artifactId to the list in the maven dependency plugin config.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

<optional>true</optional>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-circuit-breaker</artifactId>
Expand Down Expand Up @@ -338,6 +343,11 @@
<artifactId>vertx-json-schema</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>io.vertx</groupId>
<artifactId>vertx-openapi</artifactId>
<optional>true</optional>
</dependency>

<!-- Extra dependencies -->
<dependency>
Expand Down Expand Up @@ -428,6 +438,7 @@
vertx-web-sstore-infinispan,
vertx-web-graphql,
vertx-web-validation,
vertx-web-openapi-router,
vertx-circuit-breaker,
vertx-dropwizard-metrics,
vertx-redis-client,
Expand Down Expand Up @@ -458,7 +469,8 @@
vertx-shell,
vertx-micrometer-metrics,
vertx-tcp-eventbus-bridge,
vertx-json-schema
vertx-json-schema,
vertx-openapi
</includeArtifactIds>
<classifier>sources</classifier>
<includeTypes>jar</includeTypes>
Expand Down
Loading