Skip to content

Commit

Permalink
Move to QuarkusScenario, disable native build on api module
Browse files Browse the repository at this point in the history
  • Loading branch information
rsvoboda committed Mar 3, 2022
1 parent 0612939 commit bd06b55
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 49 deletions.
15 changes: 15 additions & 0 deletions qute/multimodule/qute-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,19 @@
<artifactId>qute-api</artifactId>
<packaging>jar</packaging>
<name>Quarkus QE TS: Qute-api</name>
<profiles>
<profile>
<!-- Disable native build on this module -->
<id>native</id>
<activation>
<property>
<name>native</name>
</property>
</activation>
<properties>
<!-- To not build the module on Native -->
<quarkus.package.type>fast-jar</quarkus.package.type>
</properties>
</profile>
</profiles>
</project>
1 change: 0 additions & 1 deletion qute/multimodule/qute-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
<groupId>io.quarkus.ts.qe</groupId>
<artifactId>qute-api</artifactId>
<version>1.0.0-SNAPSHOT</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.CsvSource;

import io.quarkus.test.junit.QuarkusTest;
import io.quarkus.test.scenarios.QuarkusScenario;

@QuarkusTest
class LocalizedMessagesTest {
@QuarkusScenario
class LocalizedMessagesIT {

@Tag("QUARKUS-1547")
@ParameterizedTest
Expand Down

This file was deleted.

0 comments on commit bd06b55

Please sign in to comment.