Skip to content

Commit

Permalink
In the <manifestFile> tag of the pom.xml you specify to maven that it…
Browse files Browse the repository at this point in the history
… should use the custom manifest
  • Loading branch information
Zukaritasu committed Oct 10, 2023
1 parent a920189 commit f0b960a
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>io.github.zukaritasu</groupId>
<artifactId>jdialogs</artifactId>
<version>1.9.4</version>
<version>1.9.4-SNAPSHOT</version>
<name>org.zuka.dialogs</name>
<description>About This library allows you to use common Windows dialogs in Java.
The library does not have support for other platforms, only Windows.</description>
Expand Down Expand Up @@ -43,9 +43,22 @@
<distributionManagement>
<repository>
<id>github</id>
<name>Zukaritasu Packages</name>
<name>GitHub Zukaritasu Apache Maven Packages</name>
<url>https://maven.pkg.github.com/Zukaritasu/jdialogs</url>
</repository>
</distributionManagement>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifestFile>src/main/resources/META-INF/MANIFEST.MF</manifestFile>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit f0b960a

Please sign in to comment.