Guest User

Untitled

a guest
Dec 14th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2.  
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>Sidian</groupId>
  5. <artifactId>LWJake2</artifactId>
  6. <version>0.1</version>
  7. <packaging>jar</packaging>
  8. <name>LWJake2</name>
  9.  
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.compiler.source>1.7</maven.compiler.source>
  13. <maven.compiler.target>1.7</maven.compiler.target>
  14. <mainClass>Main</mainClass>
  15.  
  16. <lwjgl.version>2.9.3</lwjgl.version>
  17. </properties>
  18.  
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.lwjgl.lwjgl</groupId>
  22. <artifactId>lwjgl</artifactId>
  23. <version>${lwjgl.version}</version>
  24. </dependency>
  25. </dependencies>
  26.  
  27. <build>
  28. <plugins>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-compiler-plugin</artifactId>
  32. <version>2.3.2</version>
  33. <configuration>
  34. <showDeprecation>true</showDeprecation>
  35. </configuration>
  36. </plugin>
  37. </plugins>
  38. </build>
  39.  
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-jar-plugin</artifactId>
  43. <version>3.0.2</version>
  44. <configuration>
  45. <archive>
  46. <manifest>
  47. <addClasspath>true</addClasspath>
  48. <mainClass>your.main.class.Here</mainClass>
  49. </manifest>
  50. </archive>
  51. </configuration>
  52. </plugin>
Add Comment
Please, Sign In to add comment