pom.xml 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.starbuds.server</groupId>
  7. <artifactId>game-sdk</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <maven.test.skip>true</maven.test.skip>
  13. </properties>
  14. <!-- 发布项目的配置 -->
  15. <distributionManagement>
  16. <repository>
  17. <id>rdc-releases</id>
  18. <url>https://repo.rdc.aliyun.com/repository/103033-release-ihyXwu/</url>
  19. </repository>
  20. <snapshotRepository>
  21. <id>rdc-snapshots</id>
  22. <url>https://repo.rdc.aliyun.com/repository/103033-snapshot-pQmiML/</url>
  23. </snapshotRepository>
  24. </distributionManagement>
  25. <dependencies>
  26. <!-- lombok -->
  27. <dependency>
  28. <groupId>org.projectlombok</groupId>
  29. <artifactId>lombok</artifactId>
  30. <version>1.18.10</version>
  31. </dependency>
  32. <!-- fastjson -->
  33. <dependency>
  34. <groupId>com.alibaba</groupId>
  35. <artifactId>fastjson</artifactId>
  36. <version>1.2.62</version>
  37. </dependency>
  38. <!-- hutool -->
  39. <dependency>
  40. <groupId>cn.hutool</groupId>
  41. <artifactId>hutool-all</artifactId>
  42. <version>5.0.6</version>
  43. </dependency>
  44. <!-- log source from spring-boot-starter-log4j2 -->
  45. <dependency>
  46. <groupId>org.apache.logging.log4j</groupId>
  47. <artifactId>log4j-slf4j-impl</artifactId>
  48. <version>2.12.1</version>
  49. <scope>compile</scope>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.logging.log4j</groupId>
  53. <artifactId>log4j-core</artifactId>
  54. <version>2.12.1</version>
  55. <scope>compile</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.logging.log4j</groupId>
  59. <artifactId>log4j-jul</artifactId>
  60. <version>2.12.1</version>
  61. <scope>compile</scope>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.slf4j</groupId>
  65. <artifactId>jul-to-slf4j</artifactId>
  66. <version>1.7.29</version>
  67. <scope>compile</scope>
  68. </dependency>
  69. <!-- https://mvnrepository.com/artifact/org.testng/testng -->
  70. <dependency>
  71. <groupId>org.testng</groupId>
  72. <artifactId>testng</artifactId>
  73. <version>7.1.0</version>
  74. <scope>test</scope>
  75. </dependency>
  76. </dependencies>
  77. <build>
  78. <plugins>
  79. <plugin>
  80. <groupId>org.apache.maven.plugins</groupId>
  81. <artifactId>maven-compiler-plugin</artifactId>
  82. <configuration>
  83. <source>1.8</source>
  84. <target>1.8</target>
  85. </configuration>
  86. </plugin>
  87. </plugins>
  88. </build>
  89. </project>