Skip to content

Commit

Permalink
#97 Add automatic module name for core and UI modules
Browse files Browse the repository at this point in the history
  • Loading branch information
theigl committed Dec 2, 2024
1 parent 32a7be3 commit b2978d9
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
7 changes: 7 additions & 0 deletions wiquery-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,13 @@
</goals>
</execution>
</executions>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>org.wicketstuff.wiquery.core</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</pluginManagement>
Expand Down
16 changes: 16 additions & 0 deletions wiquery-jquery-ui/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,20 @@
<artifactId>jakarta.servlet-api</artifactId>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestEntries>
<Automatic-Module-Name>org.wicketstuff.wiquery.ui</Automatic-Module-Name>
</manifestEntries>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit b2978d9

Please sign in to comment.