Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2019
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6.  
  7. <groupId>Master</groupId>
  8. <artifactId>Master</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10.  
  11. <dependencies>
  12. <!-- https://mvnrepository.com/artifact/io.netty/netty-all -->
  13. <dependency>
  14. <groupId>io.netty</groupId>
  15. <artifactId>netty-all</artifactId>
  16. <version>5.0.0.Alpha2</version>
  17. </dependency>
  18. <!-- https://mvnrepository.com/artifact/org.json/json -->
  19. <dependency>
  20. <groupId>org.json</groupId>
  21. <artifactId>json</artifactId>
  22. <version>20180813</version>
  23. </dependency>
  24. <!-- https://mvnrepository.com/artifact/com.google.code.gson/gson -->
  25. <dependency>
  26. <groupId>com.google.code.gson</groupId>
  27. <artifactId>gson</artifactId>
  28. <version>2.8.2</version>
  29. </dependency>
  30. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  31. <dependency>
  32. <groupId>commons-io</groupId>
  33. <artifactId>commons-io</artifactId>
  34. <version>2.4</version>
  35. </dependency>
  36. </dependencies>
  37. <build>
  38. <plugins>
  39. <plugin>
  40. <groupId>org.apache.maven.plugins</groupId>
  41. <artifactId>maven-compiler-plugin</artifactId>
  42. <version>3.3</version>
  43. <configuration>
  44. <source>1.8</source>
  45. <target>1.8</target>
  46.  
  47. </configuration>
  48. </plugin>
  49. <plugin>
  50. <groupId>org.apache.maven.plugins</groupId>
  51. <artifactId>maven-shade-plugin</artifactId>
  52. <version>2.4.1</version>
  53. <executions>
  54. <execution>
  55. <phase>package</phase>
  56. <goals>
  57. <goal>shade</goal>
  58. </goals>
  59. </execution>
  60. </executions>
  61. </plugin>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-jar-plugin</artifactId>
  65. <version>2.4</version>
  66. <configuration>
  67. <archive>
  68. <index>true</index>
  69. <manifest>
  70. <mainClass>de.EinJavaDev.Cloudsystem.Master.RunMaster</mainClass>
  71. </manifest>
  72. </archive>
  73. </configuration>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement