pom.xml 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  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/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <artifactId>atlas-parent</artifactId>
  5. <groupId>cc.funkemunky.utils</groupId>
  6. <version>1.11.5</version>
  7. <relativePath>../pom.xml</relativePath>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>AtlasBungee</artifactId>
  11. <properties>
  12. <maven.compiler.source>1.8</maven.compiler.source>
  13. <maven.compiler.target>1.8</maven.compiler.target>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <build>
  17. <plugins>
  18. <plugin>
  19. <groupId>org.apache.maven.plugins</groupId>
  20. <artifactId>maven-compiler-plugin</artifactId>
  21. <version>3.8.1</version>
  22. <configuration>
  23. <source>8</source>
  24. <target>8</target>
  25. <annotationProcessorPaths>
  26. <path>
  27. <groupId>org.projectlombok</groupId>
  28. <artifactId>lombok</artifactId>
  29. <version>1.18.20</version>
  30. </path>
  31. </annotationProcessorPaths>
  32. </configuration>
  33. </plugin>
  34. <plugin>
  35. <groupId>org.apache.maven.plugins</groupId>
  36. <artifactId>maven-shade-plugin</artifactId>
  37. <version>3.2.4</version>
  38. <executions>
  39. <execution>
  40. <phase>package</phase>
  41. <goals>
  42. <goal>shade</goal>
  43. </goals>
  44. <configuration>
  45. <minimizeJar>false</minimizeJar>
  46. <relocations>
  47. <relocation>
  48. <pattern>org.objectweb.asm</pattern>
  49. <shadedPattern>cc.funkemunky.bungee.utils.org.objectweb.asm</shadedPattern>
  50. </relocation>
  51. </relocations>
  52. </configuration>
  53. </execution>
  54. </executions>
  55. </plugin>
  56. <plugin>
  57. <groupId>org.apache.maven.plugins</groupId>
  58. <artifactId>maven-deploy-plugin</artifactId>
  59. <version>2.8.1</version>
  60. <configuration>
  61. <skip>true</skip>
  62. </configuration>
  63. </plugin>
  64. <plugin>
  65. <groupId>org.sonatype.plugins</groupId>
  66. <artifactId>nexus-staging-maven-plugin</artifactId>
  67. <version>1.5.1</version>
  68. <executions>
  69. <execution>
  70. <id>default-deploy</id>
  71. <phase>deploy</phase>
  72. <goals>
  73. <goal>deploy</goal>
  74. </goals>
  75. </execution>
  76. </executions>
  77. <configuration>
  78. <serverId>funkemunky</serverId>
  79. <nexusUrl>https://nexus.funkemunky.cc</nexusUrl>
  80. <skipStaging>true</skipStaging>
  81. </configuration>
  82. </plugin>
  83. </plugins>
  84. <resources>
  85. <resource>
  86. <directory>src/main/resources</directory>
  87. <filtering>true</filtering>
  88. </resource>
  89. </resources>
  90. </build>
  91. <repositories>
  92. <repository>
  93. <id>aikar-snapshots</id>
  94. <url>https://repo.aikar.co/content/repositories/aikar-snapshots/</url>
  95. </repository>
  96. <repository>
  97. <id>funkemunky-releases</id>
  98. <url>https://nexus.funkemunky.cc/content/repositories/releases/</url>
  99. </repository>
  100. </repositories>
  101. <distributionManagement>
  102. <snapshotRepository>
  103. <id>funkemunky-snapshots</id>
  104. <url>https://nexus.funkemunky.cc/content/repositories/snapshots/</url>
  105. </snapshotRepository>
  106. <repository>
  107. <id>funkemunky-releases</id>
  108. <url>https://nexus.funkemunky.cc/content/repositories/releases/</url>
  109. </repository>
  110. </distributionManagement>
  111. <dependencies>
  112. <dependency>
  113. <groupId>org.github.bungee</groupId>
  114. <artifactId>BungeeCord-1.8</artifactId>
  115. <version>1.8</version>
  116. <scope>provided</scope>
  117. </dependency>
  118. <dependency>
  119. <groupId>co.aikar</groupId>
  120. <artifactId>acf-bungee</artifactId>
  121. <version>0.5.0-SNAPSHOT</version>
  122. <scope>compile</scope>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.ow2.asm</groupId>
  126. <artifactId>asm</artifactId>
  127. <version>9.2</version>
  128. <scope>compile</scope>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.ow2.asm</groupId>
  132. <artifactId>asm-tree</artifactId>
  133. <version>9.2</version>
  134. <scope>compile</scope>
  135. </dependency>
  136. <dependency>
  137. <groupId>com.imaginarycode.minecraft</groupId>
  138. <artifactId>RedisBungee</artifactId>
  139. <version>0.5</version>
  140. <scope>provided</scope>
  141. </dependency>
  142. </dependencies>
  143. </project>