Skip to content

Commit

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

Fixes quarkusio/quarkus#25795.
  • Loading branch information
benkard authored and gsmet committed Jun 6, 2024
1 parent 947bb36 commit 39654bf
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,21 @@
</repository>
</distributionManagement>

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

<profiles>
<profile>
<id>release</id>
Expand Down

0 comments on commit 39654bf

Please sign in to comment.