dependency-reduced-pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. </plugins>
  48. </build>
  49. <repositories>
  50. <repository>
  51. <id>funkemunky-releases</id>
  52. <url>http://funkemunky.cc:8080/nexus/content/repositories/releases/</url>
  53. </repository>
  54. </repositories>
  55. <dependencies>
  56. <dependency>
  57. <groupId>org.github.bungee</groupId>
  58. <artifactId>BungeeCord-1.8</artifactId>
  59. <version>1.8.3.1</version>
  60. <scope>provided</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.github.lombok</groupId>
  64. <artifactId>lombok</artifactId>
  65. <version>1.18.0</version>
  66. <scope>provided</scope>
  67. </dependency>
  68. </dependencies>
  69. </project>