Skip to content

Commit

Permalink
Merge pull request #37071 from mkouba/resteasy-qute-dependency-condit…
Browse files Browse the repository at this point in the history
…ions

RESTEasy Qute integration: add dependency conditions
  • Loading branch information
ia3andy authored Nov 15, 2023
2 parents c1af049 + 25d7633 commit d91e098
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
13 changes: 13 additions & 0 deletions extensions/resteasy-classic/resteasy-qute/runtime/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,19 @@
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-extension-maven-plugin</artifactId>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>extension-descriptor</goal>
</goals>
<configuration>
<dependencyCondition>
<artifact>io.quarkus:quarkus-resteasy</artifact>
</dependencyCondition>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,19 @@
<plugin>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-extension-maven-plugin</artifactId>
<executions>
<execution>
<phase>process-resources</phase>
<goals>
<goal>extension-descriptor</goal>
</goals>
<configuration>
<dependencyCondition>
<artifact>io.quarkus:quarkus-resteasy-reactive</artifact>
</dependencyCondition>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
Expand All @@ -53,5 +66,4 @@
</plugins>
</build>


</project>

0 comments on commit d91e098

Please sign in to comment.