Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4.  
  5. <groupId>net.apfelcrew</groupId>
  6. <artifactId>speedbw</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9.  
  10. <name>speedbw</name>
  11. <url>http://maven.apache.org</url>
  12.  
  13. <repositories>
  14. <repository>
  15. <id>spigot-repo</id>
  16. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  17. </repository>
  18. <repository>
  19. <id>lombok</id>
  20. <url>https://mvnrepository.com/artifact/org.projectlombok/lombok</url>
  21. </repository>
  22. </repositories>
  23.  
  24. <dependencies>
  25. <dependency> <!-- Spigot (this includes Spigot API, Bukkit API, Craftbukkit and NMS) -->
  26. <groupId>org.spigotmc</groupId>
  27. <artifactId>spigot</artifactId>
  28. <version>1.8.8-R0.1-SNAPSHOT</version>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.projectlombok</groupId>
  33. <artifactId>lombok</artifactId>
  34. <version>1.16.10</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.google.code.gson</groupId>
  39. <artifactId>gson</artifactId>
  40. <version>2.8.0</version>
  41. </dependency>
  42. </dependencies>
  43.  
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.apache.maven.plugins</groupId>
  48. <artifactId>maven-compiler-plugin</artifactId>
  49. <version>3.5.1</version>
  50. <configuration>
  51. <source>1.8</source>
  52. <target>1.8</target>
  53. </configuration>
  54. </plugin>
  55. <plugin>
  56. <groupId>org.apache.maven.plugins</groupId>
  57. <artifactId>maven-jar-plugin</artifactId>
  58. <version>2.3.2</version>
  59. </plugin>
  60. <plugin>
  61. <groupId>org.apache.maven.plugins</groupId>
  62. <artifactId>maven-shade-plugin</artifactId>
  63. <version>2.3</version>
  64. <executions>
  65. <execution>
  66. <phase>package</phase>
  67. <goals>
  68. <goal>shade</goal>
  69. </goals>
  70. </execution>
  71. </executions>
  72. <configuration>
  73. <createDependencyReducedPom>false</createDependencyReducedPom>
  74. <shadedArtifactAttached>true</shadedArtifactAttached>
  75. </configuration>
  76. </plugin>
  77. </plugins>
  78. <resources>
  79. <resource>
  80. <directory>src/main/resources</directory>
  81. <filtering>true</filtering>
  82. <includes>
  83. <include>*.yml</include>
  84. </includes>
  85. </resource>
  86. </resources>
  87. </build>
  88.  
  89. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement