Skip to content

Commit

Permalink
Merge pull request #789 from pjgg/patch/vertx-sql_native
Browse files Browse the repository at this point in the history
Disable native compilation on Vertx-sql
  • Loading branch information
michalvavrik committed Aug 11, 2022
2 parents 8ea1f29 + 65a9bb8 commit 519fa51
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions sql-db/vertx-sql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -112,5 +112,34 @@
</plugins>
</build>
</profile>
<profile>
<!-- TODO https://github.com/quarkusio/quarkus/issues/27246 -->
<!-- Disable native build on this module -->
<id>native</id>
<activation>
<property>
<name>native</name>
</property>
</activation>
<properties>
<quarkus.package.type>fast-jar</quarkus.package.type>
</properties>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 519fa51

Please sign in to comment.