Advertisement
Guest User

Untitled

a guest
Sep 8th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1.  
  2. <!-- Dependencies -->
  3. <dependencies>
  4. <!--Spigot API-->
  5. <dependency>
  6. <groupId>org.spigotmc</groupId>
  7. <artifactId>spigot-api</artifactId>
  8. <version>1.12-R0.1-SNAPSHOT</version>
  9. <scope>provided</scope>
  10. </dependency>
  11.  
  12. <!--Bukkit API-->
  13. <dependency>
  14. <groupId>org.bukkit</groupId>
  15. <artifactId>bukkit</artifactId>
  16. <version>1.12-R0.1-SNAPSHOT</version>
  17. <scope>provided</scope>
  18. </dependency>
  19. </dependencies>
  20.  
  21. <!-- Build -->
  22. <build>
  23. <plugins>
  24. <!-- Compile plugin -->
  25. <plugin>
  26. <groupId>org.apache.maven.plugins</groupId>
  27. <artifactId>maven-compiler-plugin</artifactId>
  28. <version>3.5.1</version>
  29. <configuration>
  30. <source>1.8</source>
  31. <target>1.8</target>
  32. <encoding>${project.build.sourceEncoding}</encoding>
  33. <showDeprecation>true</showDeprecation>
  34. </configuration>
  35. </plugin>
  36. <!-- Shade plugin -->
  37. <plugin>
  38. <groupId>org.apache.maven.plugins</groupId>
  39. <artifactId>maven-shade-plugin</artifactId>
  40. <version>2.4.3</version>
  41. <executions>
  42. <execution>
  43. <phase>package</phase>
  44. <goals>
  45. <goal>shade</goal>
  46. </goals>
  47. <configuration>
  48. <artifactSet>
  49. <excludes>
  50. <exclude>org.bukkit:bukkit</exclude>
  51. </excludes>
  52. </artifactSet>
  53. </configuration>
  54. </execution>
  55. </executions>
  56. </plugin>
  57. </plugins>
  58. </build>
  59.  
  60. <packaging>jar</packaging>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement