Advertisement
TerenceFerut

Plugin pom.xml

Feb 20th, 2024
937
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.49 KB | Source Code | 0 0
  1. <plugin>
  2.     <groupId>org.apache.maven.plugins</groupId>
  3.     <artifactId>maven-jar-plugin</artifactId>
  4.     <version>3.2.0</version> <!-- Use the latest version -->
  5.     <configuration>
  6.         <archive>
  7.             <manifest>
  8.                 <addClasspath>true</addClasspath>
  9.                 <classpathPrefix>lib/</classpathPrefix>
  10.                 <mainClass>com.ynov.helloworld.helloworld.HelloApplication</mainClass>
  11.             </manifest>
  12.         </archive>
  13.     </configuration>
  14. </plugin>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement