Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. <project>
  2. <groupId>uk.kingsy</groupId>
  3. <artifactId>SpringSample</artifactId>
  4. <version>1.0-SNAPSHOT</version>
  5. <modelVersion>4.0.0</modelVersion>
  6. <packaging>jar</packaging>
  7.  
  8. <dependencies>
  9. <dependency>
  10. <groupId>org.springframework</groupId>
  11. <artifactId>spring-context</artifactId>
  12. <version>5.1.8.RELEASE</version>
  13. </dependency>
  14. </dependencies>
  15.  
  16. <build>
  17. <plugins>
  18. <plugin>
  19. <groupId>org.apache.maven.plugins</groupId>
  20. <artifactId>maven-jar-plugin</artifactId>
  21. <configuration>
  22. <archive>
  23. <manifest>
  24. <addClasspath>true</addClasspath>
  25. <mainClass>uk.kingsy.SpringSample</mainClass>
  26. </manifest>
  27. </archive>
  28. </configuration>
  29. </plugin>
  30. </plugins>
  31. </build>
  32. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement