pom.xml 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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.6.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. </configuration>
  28. </plugin>
  29. <plugin>
  30. <groupId>org.apache.maven.plugins</groupId>
  31. <artifactId>maven-shade-plugin</artifactId>
  32. <version>3.1.0</version>
  33. <executions>
  34. <execution>
  35. <phase>package</phase>
  36. <goals>
  37. <goal>shade</goal>
  38. </goals>
  39. <configuration>
  40. <minimizeJar>true</minimizeJar>
  41. </configuration>
  42. </execution>
  43. </executions>
  44. </plugin>
  45. <plugin>
  46. <groupId>org.codehaus.mojo</groupId>
  47. <artifactId>buildnumber-maven-plugin</artifactId>
  48. <version>1.4</version>
  49. <executions>
  50. <execution>
  51. <id>buildnumber</id>
  52. <phase>validate</phase>
  53. <goals>
  54. <goal>create</goal>
  55. </goals>
  56. </execution>
  57. </executions>
  58. <configuration>
  59. <format>{0,number}</format>
  60. <items>
  61. <item>buildNumber</item>
  62. </items>
  63. <doCheck>false</doCheck>
  64. <doUpdate>false</doUpdate>
  65. <revisionOnScmFailure>unknownbuild</revisionOnScmFailure>
  66. </configuration>
  67. </plugin>
  68. </plugins>
  69. <resources>
  70. <resource>
  71. <directory>src/main/resources</directory>
  72. <filtering>true</filtering>
  73. </resource>
  74. </resources>
  75. </build>
  76. <repositories>
  77. <repository>
  78. <id>funkemunky-releases</id>
  79. <url>http://nexus.funkemunky.cc/content/repositories/releases/</url>
  80. </repository>
  81. </repositories>
  82. <dependencies>
  83. <dependency>
  84. <groupId>org.github.bungee</groupId>
  85. <artifactId>BungeeCord-1.8</artifactId>
  86. <version>1.8</version>
  87. <scope>provided</scope>
  88. </dependency>
  89. </dependencies>
  90. </project>