2021年5月1日星期六

Quarkus does not create a runnable jar

i have a problem with quarkus not creating a runnable jar despite the quarkus-maven-plugin being defined at pom.xml which look like this:

...  <build>      <plugins>        <plugin>          <groupId>io.quarkus</groupId>          <artifactId>quarkus-maven-plugin</artifactId>          <version>${quarkus-plugin.version}</version>          <extensions>true</extensions>          <executions>            <execution>              <goals>                <goal>build</goal>                <goal>generate-code</goal>                <goal>generate-code-tests</goal>              </goals>            </execution>          </executions>        </plugin>        ...  

mvn package is processing just completely ignoring to create a runnable jar, it only creates a simple jar.

Can somebody tell me, why?

(btw: it's from this workshop: https://github.com/quarkusio/quarkus-workshops/tree/master/quarkus-workshop-super-heroes)

https://stackoverflow.com/questions/67352164/quarkus-does-not-create-a-runnable-jar May 02, 2021 at 09:06AM

没有评论:

发表评论