Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  4. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.itmolabs.lab3</groupId>
  7. <artifactId>lab3</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <build>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.codehaus.mojo</groupId>
  14. <artifactId>exec-maven-plugin</artifactId>
  15. <version>1.2.1</version>
  16. <configuration>
  17. <mainClass>Lab3</mainClass>
  18. </configuration>
  19. </plugin>
  20. <plugin>
  21. <!-- Build an executable JAR -->
  22. <groupId>org.apache.maven.plugins</groupId>
  23. <artifactId>maven-jar-plugin</artifactId>
  24. <version>3.1.0</version>
  25. <configuration>
  26. <archive>
  27. <manifest>
  28. <addClasspath>true</addClasspath>
  29. <classpathPrefix>lib/</classpathPrefix>
  30. <mainClass>Lab3</mainClass>
  31. </manifest>
  32. </archive>
  33. </configuration>
  34. </plugin>
  35. </plugins>
  36. </build>
  37. <name>lab3</name>
  38. <developers>
  39. <developer>
  40. <id>yank0vy3rdna</id>
  41. <name>yank0vy3rdna</name>
  42. <email>yankovyerdna@yandex.ru</email>
  43. <properties>
  44. <active>true</active>
  45. </properties>
  46. </developer>
  47. </developers>
  48. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement