pom.xml 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. <parent>
  6. <artifactId>atlas-parent</artifactId>
  7. <groupId>cc.funkemunky.utils</groupId>
  8. <version>1.8.3.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>AtlasBungee</artifactId>
  12. <scm>
  13. <connection>scm:svn:http://127.0.0.1/dummy</connection>
  14. <developerConnection>scm:svn:https://127.0.0.1/dummy</developerConnection>
  15. <tag>HEAD</tag>
  16. <url>http://127.0.0.1/dummy</url>
  17. </scm>
  18. <build>
  19. <plugins>
  20. <plugin>
  21. <groupId>org.apache.maven.plugins</groupId>
  22. <artifactId>maven-compiler-plugin</artifactId>
  23. <version>3.7.0</version>
  24. <configuration>
  25. <source>8</source>
  26. <target>8</target>
  27. <compilerArgument>-XDignore.symbol.file</compilerArgument>
  28. </configuration>
  29. </plugin>
  30. <plugin>
  31. <groupId>org.apache.maven.plugins</groupId>
  32. <artifactId>maven-shade-plugin</artifactId>
  33. <version>3.1.0</version>
  34. <executions>
  35. <execution>
  36. <phase>package</phase>
  37. <goals>
  38. <goal>shade</goal>
  39. </goals>
  40. <configuration>
  41. <minimizeJar>true</minimizeJar>
  42. </configuration>
  43. </execution>
  44. </executions>
  45. </plugin>
  46. </plugins>
  47. <resources>
  48. <resource>
  49. <directory>src/main/resources</directory>
  50. <filtering>true</filtering>
  51. </resource>
  52. </resources>
  53. </build>
  54. <repositories>
  55. <repository>
  56. <id>funkemunky-releases</id>
  57. <url>https://nexus.funkemunky.cc/content/repositories/releases/</url>
  58. </repository>
  59. </repositories>
  60. <dependencies>
  61. <dependency>
  62. <groupId>org.github.bungee</groupId>
  63. <artifactId>BungeeCord-1.8</artifactId>
  64. <version>1.8</version>
  65. <scope>provided</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.imaginarycode.minecraft</groupId>
  69. <artifactId>RedisBungee</artifactId>
  70. <version>0.5</version>
  71. <scope>provided</scope>
  72. </dependency>
  73. </dependencies>
  74. </project>