Guest User

Untitled

a guest
May 1st, 2020
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.53 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2. <modelVersion>4.0.0</modelVersion>
  3. <groupId>hz.s</groupId>
  4. <artifactId>tab-magic</artifactId>
  5. <version>0.1</version>
  6. <packaging>jar</packaging>
  7.  
  8. <name>tab-magic</name>
  9. <description>bridge of tg and minecraft chat</description>
  10.  
  11. <licenses>
  12. <license>
  13. <name>Zlib License</name>
  14. <url>http://opensource.org/licenses/Zlib</url>
  15. <comments></comments>
  16. </license>
  17. </licenses>
  18.  
  19. <developers>
  20. <developer>
  21. <name>fulcanelly</name>
  22. </developer>
  23. </developers>
  24.  
  25. <properties>
  26.  
  27. <maven.compiler.source>1.13</maven.compiler.source>
  28. <author>fulcanelly</author>
  29. <mainClass>tabmagic.TabMagic</mainClass>
  30. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  31.  
  32. </properties>
  33.  
  34. <dependencies>
  35. <dependency>
  36. <groupId>org.projectlombok</groupId>
  37. <artifactId>lombok</artifactId>
  38. <version>1.18.12</version>
  39. <scope>provided</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.spigotmc</groupId>
  43. <artifactId>spigot-api</artifactId>
  44. <version>1.15.2-R0.1-SNAPSHOT</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.googlecode.json-simple</groupId>
  48. <artifactId>json-simple</artifactId>
  49. <version>1.1.1</version>
  50. </dependency>
  51. </dependencies>
  52.  
  53. <repositories>
  54. <repository>
  55. <id>spigot-repo</id>
  56. <url>https://hub.spigotmc.org/nexus/content/groups/public/</url>
  57. </repository>
  58. </repositories>
  59.  
  60. <build>
  61. <sourceDirectory>src/main/java</sourceDirectory>
  62. <defaultGoal>clean install</defaultGoal>
  63. <resources>
  64. <resource>
  65. <directory>src/main/resources</directory>
  66. <filtering>true</filtering>
  67. <includes>
  68. <include>plugin.yml</include>
  69. </includes>
  70. </resource>
  71. <resource>
  72. <directory>src/main/resources</directory>
  73. <filtering>false</filtering>
  74. <excludes>
  75. <exclude>**/*.java</exclude>
  76. <exclude>plugin.yml</exclude>
  77. </excludes>
  78. </resource>
  79. </resources>
  80. <plugins>
  81. <plugin>
  82. <artifactId>maven-compiler-plugin</artifactId>
  83. <version>3.6.2</version>
  84. <configuration>
  85. <annotationProcessorPaths>
  86. <path>
  87. <groupId>com.google.dagger</groupId>
  88. <artifactId>dagger-compiler</artifactId>
  89. <version>2.15</version>
  90. </path>
  91. <path>
  92. <groupId>org.projectlombok</groupId>
  93. <artifactId>lombok</artifactId>
  94. <version>1.18.12</version>
  95. </path>
  96. </annotationProcessorPaths>
  97. <source>1.8</source>
  98. <target>1.8</target>
  99. </configuration>
  100. </plugin>
  101. </plugins>
  102. </build>
  103. </project>
Add Comment
Please, Sign In to add comment