Advertisement
Guest User

RTCoin POM.xml

a guest
Jun 26th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.90 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>pl</groupId>
  6. <artifactId>Base</artifactId>
  7. <version>1.0-SNAPSHOT</version>
  8. <packaging>jar</packaging>
  9.  
  10. <name>RTCoin</name>
  11. <url>http://maven.apache.org</url>
  12.  
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <build>
  17. <resources>
  18. <resource>
  19. <targetPath>.</targetPath>
  20. <filtering>true</filtering>
  21. <directory>src/main/resources/</directory>
  22. <includes>
  23. <include>plugin.yml</include>
  24. </includes>
  25. </resource>
  26. </resources>
  27. <plugins>
  28. <plugin>
  29. <groupId>org.apache.maven.plugins</groupId>
  30. <artifactId>maven-shade-plugin</artifactId>
  31. <version>3.1.1</version>
  32. <executions>
  33. <execution>
  34. <phase>package</phase>
  35. <goals>
  36. <goal>shade</goal>
  37. </goals>
  38. <configuration>
  39. <filters>
  40. <filter>
  41. <artifact>net.java.dev.jna:jna</artifact>
  42. <includes>
  43. <include>net.java.dev.jna:jna</include>
  44. </includes>
  45. </filter>
  46. </filters>
  47. </configuration>
  48. </execution>
  49. </executions>
  50. </plugin>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-compiler-plugin</artifactId>
  54. <version>3.7.0</version>
  55. <configuration>
  56. <source>1.8</source>
  57. <target>1.8</target>
  58. </configuration>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. <dependencies>
  63. <dependency>
  64. <groupId>org.spigotmc</groupId>
  65. <artifactId>spigot-api</artifactId>
  66. <version>1.12.2-R0.1-SNAPSHOT</version>
  67. <scope>provided</scope>
  68. </dependency>
  69. </dependencies>
  70. <repositories>
  71. <repository>
  72. <id>spigot-repo</id>
  73. <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
  74. </repository>
  75. </repositories>
  76. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement