Skip to content

Commit

Permalink
Gradle plugin: Add mandatory dependency to smallrye-config
Browse files Browse the repository at this point in the history
Using the Gradle plugin (v3.3.1) otherwise leads to
```
FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':nessie-model:generateOpenApiSpec'.
> io/smallrye/config/SmallRyeConfigBuilder
```
which is a `ClassNotFoundException`.
  • Loading branch information
snazy committed Mar 24, 2023
1 parent 31da98d commit 90ee556
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tools/gradle-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@
<groupId>io.smallrye</groupId>
<artifactId>smallrye-open-api-vertx</artifactId>
</dependency>
<dependency>
<groupId>io.smallrye.config</groupId>
<artifactId>smallrye-config</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 90ee556

Please sign in to comment.