Skip to content

Commit

Permalink
Move manifest to pom.xml
Browse files Browse the repository at this point in the history
  • Loading branch information
lavajuno committed Nov 2, 2023
1 parent b1f07d4 commit da4ffbb
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
19 changes: 18 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,25 @@
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>RELEASE</version>
<version>5.10.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>org.lavajuno.mirrorlog.main.MirrorLogApplication</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
</project>
3 changes: 0 additions & 3 deletions src/main/resources/META-INF/MANIFEST.MF

This file was deleted.

0 comments on commit da4ffbb

Please sign in to comment.