Skip to content

Commit 7e931b5

Browse files
committed
Use Quarkus application framework - step 4: add quarkus-maven-plugin
1 parent fdba30c commit 7e931b5

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

bootstrap/pom.xml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,25 @@
6565
</dependency>
6666
</dependencies>
6767

68+
<build>
69+
<plugins>
70+
<plugin>
71+
<groupId>io.quarkus.platform</groupId>
72+
<artifactId>quarkus-maven-plugin</artifactId>
73+
<extensions>true</extensions>
74+
<executions>
75+
<execution>
76+
<goals>
77+
<goal>build</goal>
78+
<goal>generate-code</goal>
79+
<goal>generate-code-tests</goal>
80+
</goals>
81+
</execution>
82+
</executions>
83+
</plugin>
84+
</plugins>
85+
</build>
86+
6887
<profiles>
6988
<profile>
7089
<id>test-coverage</id>

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,12 @@
8888

8989
<build>
9090
<plugins>
91+
<plugin>
92+
<groupId>io.quarkus.platform</groupId>
93+
<artifactId>quarkus-maven-plugin</artifactId>
94+
<version>${quarkus.platform.version}</version>
95+
</plugin>
96+
9197
<!-- Make sure to use the latest compiler and surefire plugins
9298
(their versions otherwise depends on the Maven version in use). -->
9399
<plugin>

0 commit comments

Comments
 (0)