Skip to content

Commit

Permalink
Add explicit automatic module path
Browse files Browse the repository at this point in the history
Adds an explicit automatic module path of io.quarkus.security, which
matches the root package name.

Fixes quarkusio/quarkus#25795.
  • Loading branch information
benkard committed Nov 20, 2022
1 parent bd8e390 commit 0d54908
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@

<build>
<plugins>

<plugin>
<groupId>org.openrewrite.maven</groupId>
<artifactId>rewrite-maven-plugin</artifactId>
Expand All @@ -75,6 +76,18 @@
</activeRecipes>
</configuration>
</plugin>

<plugin>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>io.quarkus.security</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>

</plugins>
</build>

Expand Down

0 comments on commit 0d54908

Please sign in to comment.