Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2019
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 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>net.mmm.mc</groupId>
  8. <artifactId>legend</artifactId>
  9. <version>1.0.0-SNAPSHOT</version>
  10.  
  11. <packaging>jar</packaging>
  12.  
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16.  
  17. <build>
  18. <finalName>Legend-1.0</finalName>
  19. <sourceDirectory>src/main/java</sourceDirectory>
  20. <resources>
  21. <resource>
  22. <targetPath>.</targetPath>
  23. <filtering>true</filtering>
  24. <directory>${basedir}/src/main/resources/</directory>
  25. <includes>
  26. <include>plugin.yml</include>
  27. </includes>
  28. </resource>
  29. </resources>
  30.  
  31. <plugins>
  32. <plugin>
  33. <artifactId>maven-compiler-plugin</artifactId>
  34. <configuration>
  35. <source>8</source>
  36. <target>8</target>
  37. </configuration>
  38. </plugin>
  39. <plugin>
  40. <artifactId>maven-assembly-plugin</artifactId>
  41. <configuration>
  42. <descriptorRefs>
  43. <descriptorRef>jar-with-dependencies</descriptorRef>
  44. </descriptorRefs>
  45. <outputDirectory>target</outputDirectory>
  46. </configuration>
  47. <executions>
  48. <execution>
  49. <id>make-assembly</id> <!-- this is used for inheritance merges -->
  50. <phase>package</phase> <!-- bind to the packaging phase -->
  51. <goals>
  52. <goal>single</goal>
  53. </goals>
  54. </execution>
  55. </executions>
  56. </plugin>
  57. </plugins>
  58. </build>
  59.  
  60. <repositories>
  61. <repository>
  62. <id>spigot-repo</id>
  63. <url>https://hub.spigotmc.org/nexus/content/repositories/snapshots/</url>
  64. </repository>
  65. </repositories>
  66.  
  67. <dependencies>
  68. <!-- https://mvnrepository.com/artifact/org.reflections/reflections -->
  69. <dependency>
  70. <groupId>org.reflections</groupId>
  71. <artifactId>reflections</artifactId>
  72. <version>0.9.10</version>
  73. <scope>compile</scope>
  74. </dependency>
  75. </dependencies>
  76. </project>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement