pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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.jttserver</groupId>
  7. <artifactId>jttserver</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>17</maven.compiler.source>
  11. <maven.compiler.target>17</maven.compiler.target>
  12. <junit.version>5.9.2</junit.version>
  13. <netty.version>4.1.100.Final</netty.version>
  14. <slf4j.version>2.0.9</slf4j.version>
  15. </properties>
  16. <dependencies>
  17. <!-- Netty核心依赖 -->
  18. <dependency>
  19. <groupId>io.netty</groupId>
  20. <artifactId>netty-buffer</artifactId>
  21. <version>${netty.version}</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.netty</groupId>
  25. <artifactId>netty-common</artifactId>
  26. <version>${netty.version}</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>io.netty</groupId>
  30. <artifactId>netty-transport</artifactId>
  31. <version>${netty.version}</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>io.netty</groupId>
  35. <artifactId>netty-codec</artifactId>
  36. <version>${netty.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>io.netty</groupId>
  40. <artifactId>netty-codec-http</artifactId>
  41. <version>${netty.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.junit.jupiter</groupId>
  45. <artifactId>junit-jupiter-api</artifactId>
  46. <version>${junit.version}</version>
  47. <scope>test</scope>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.junit.jupiter</groupId>
  51. <artifactId>junit-jupiter-engine</artifactId>
  52. <version>${junit.version}</version>
  53. <scope>test</scope>
  54. </dependency>
  55. <!-- SLF4J 日志框架 -->
  56. <dependency>
  57. <groupId>org.slf4j</groupId>
  58. <artifactId>slf4j-api</artifactId>
  59. <version>${slf4j.version}</version>
  60. </dependency>
  61. </dependencies>
  62. </project>