dependency-reduced-pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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/maven-v4_0_0.xsd">
  3. <parent>
  4. <artifactId>atlas-parent</artifactId>
  5. <groupId>cc.funkemunky.utils</groupId>
  6. <version>1.6.2</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>AtlasBungee</artifactId>
  10. <scm>
  11. <connection>scm:svn:http://127.0.0.1/dummy</connection>
  12. <developerConnection>scm:svn:https://127.0.0.1/dummy</developerConnection>
  13. <url>http://127.0.0.1/dummy</url>
  14. </scm>
  15. <build>
  16. <resources>
  17. <resource>
  18. <filtering>true</filtering>
  19. <directory>src/main/resources</directory>
  20. </resource>
  21. </resources>
  22. <plugins>
  23. <plugin>
  24. <artifactId>maven-compiler-plugin</artifactId>
  25. <version>3.7.0</version>
  26. <configuration>
  27. <source>8</source>
  28. <target>8</target>
  29. <compilerArgument>-XDignore.symbol.file</compilerArgument>
  30. </configuration>
  31. </plugin>
  32. <plugin>
  33. <artifactId>maven-shade-plugin</artifactId>
  34. <version>3.1.0</version>
  35. <executions>
  36. <execution>
  37. <phase>package</phase>
  38. <goals>
  39. <goal>shade</goal>
  40. </goals>
  41. <configuration>
  42. <minimizeJar>true</minimizeJar>
  43. </configuration>
  44. </execution>
  45. </executions>
  46. </plugin>
  47. <plugin>
  48. <groupId>org.codehaus.mojo</groupId>
  49. <artifactId>buildnumber-maven-plugin</artifactId>
  50. <version>1.4</version>
  51. <executions>
  52. <execution>
  53. <id>buildnumber</id>
  54. <phase>validate</phase>
  55. <goals>
  56. <goal>create</goal>
  57. </goals>
  58. </execution>
  59. </executions>
  60. <configuration>
  61. <format>{0,number}</format>
  62. <items>
  63. <item>buildNumber</item>
  64. </items>
  65. <doCheck>false</doCheck>
  66. <doUpdate>false</doUpdate>
  67. <revisionOnScmFailure>unknownbuild</revisionOnScmFailure>
  68. </configuration>
  69. </plugin>
  70. </plugins>
  71. </build>
  72. <repositories>
  73. <repository>
  74. <id>funkemunky-releases</id>
  75. <url>http://funkemunky.cc:8080/nexus/content/repositories/releases/</url>
  76. </repository>
  77. </repositories>
  78. <dependencies>
  79. <dependency>
  80. <groupId>org.github.bungee</groupId>
  81. <artifactId>BungeeCord-1.8</artifactId>
  82. <version>1.8</version>
  83. <scope>provided</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.github.lombok</groupId>
  87. <artifactId>lombok</artifactId>
  88. <version>1.18.0</version>
  89. <scope>provided</scope>
  90. </dependency>
  91. </dependencies>
  92. </project>