Advertisement
Guest User

Untitled

a guest
May 19th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 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>co.antiqu</groupId>
  8. <artifactId>discord-minecraft</artifactId>
  9. <version>1.0-SNAPSHOT</version>
  10. <packaging>jar</packaging>
  11.  
  12. <name>Discord Minecraft</name>
  13.  
  14. <properties>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17.  
  18. <build>
  19. <defaultGoal>clean package</defaultGoal>
  20. <plugins>
  21. <plugin>
  22. <groupId>org.apache.maven.plugins</groupId>
  23. <artifactId>maven-compiler-plugin</artifactId>
  24. <version>3.7.0</version>
  25. <configuration>
  26. <source>1.8</source>
  27. <target>1.8</target>
  28. </configuration>
  29. </plugin>
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-shade-plugin</artifactId>
  33. <version>3.1.0</version>
  34. <executions>
  35. <execution>
  36. <phase>package</phase>
  37. <goals>
  38. <goal>shade</goal>
  39. </goals>
  40. <configuration>
  41. <minimizeJar>true</minimizeJar>
  42. </configuration>
  43. </execution>
  44. </executions>
  45. </plugin>
  46. </plugins>
  47. <resources>
  48. <resource>
  49. <directory>src/main/resources</directory>
  50. <filtering>true</filtering>
  51. </resource>
  52. </resources>
  53. </build>
  54.  
  55. <repositories>
  56. <repository>
  57. <id>spigotmc-repo</id>
  58. <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
  59. </repository>
  60. <repository>
  61. <id>sonatype</id>
  62. <url>https://oss.sonatype.org/content/groups/public/</url>
  63. </repository>
  64.  
  65. <repository>
  66. <id>jcenter</id>
  67. <name>jcenter-bintray</name>
  68. <url>http://jcenter.bintray.com</url>
  69. </repository>
  70.  
  71. </repositories>
  72.  
  73. <dependencies>
  74. <dependency>
  75. <groupId>org.spigotmc</groupId>
  76. <artifactId>spigot-api</artifactId>
  77. <version>1.8.8-R0.1-SNAPSHOT</version>
  78. <scope>provided</scope>
  79. </dependency>
  80.  
  81. <dependency>
  82. <groupId>net.dv8tion</groupId>
  83. <artifactId>JDA</artifactId>
  84. <version>3.8.3_463</version>
  85. </dependency>
  86.  
  87. </dependencies>
  88. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement