Skip to content

Commit

Permalink
Merge pull request #98 from theigl/#97-automatic-module
Browse files Browse the repository at this point in the history
#97 Add automatic module name for core and UI modules
  • Loading branch information
martin-g authored Dec 2, 2024
2 parents 32a7be3 + b2978d9 commit 07b0744
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 07b0744

Please sign in to comment.