Skip to content

Commit 8216b0e

Browse files
committed
Added missing dependencies to mvn profile
Signed-off-by: Ricardo Zanini <[email protected]>
1 parent d0ff97b commit 8216b0e

File tree

1 file changed

+21
-4
lines changed
  • client/integration-tests/generation-tests

1 file changed

+21
-4
lines changed

client/integration-tests/generation-tests/pom.xml

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@
1919
<groupId>io.quarkiverse.openapi.generator</groupId>
2020
<artifactId>quarkus-openapi-generator-oidc</artifactId>
2121
</dependency>
22-
<dependency>
23-
<groupId>io.quarkus</groupId>
24-
<artifactId>quarkus-resteasy-client-oidc-filter</artifactId>
25-
</dependency>
2622
<dependency>
2723
<groupId>io.quarkiverse.openapi.generator</groupId>
2824
<artifactId>quarkus-openapi-generator-it-generation-input</artifactId>
@@ -100,5 +96,26 @@
10096
<quarkus.package.type>native</quarkus.package.type>
10197
</properties>
10298
</profile>
99+
<profile>
100+
<id>resteasy-classic</id>
101+
<activation>
102+
<activeByDefault>true</activeByDefault>
103+
</activation>
104+
<dependencies>
105+
<dependency>
106+
<groupId>io.quarkus</groupId>
107+
<artifactId>quarkus-resteasy-client-oidc-filter</artifactId>
108+
</dependency>
109+
</dependencies>
110+
</profile>
111+
<profile>
112+
<id>resteasy-reactive</id>
113+
<dependencies>
114+
<dependency>
115+
<groupId>io.quarkus</groupId>
116+
<artifactId>quarkus-rest-client-oidc-filter</artifactId>
117+
</dependency>
118+
</dependencies>
119+
</profile>
103120
</profiles>
104121
</project>

0 commit comments

Comments
 (0)