pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. <parent>
  6. <artifactId>pwt</artifactId>
  7. <groupId>com.pwt</groupId>
  8. <version>3.8.4</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>pwt-netty</artifactId>
  12. <description>
  13. netty站控网络框架
  14. </description>
  15. <dependencies>
  16. <!-- 通用工具-->
  17. <dependency>
  18. <groupId>com.pwt</groupId>
  19. <artifactId>pwt-common</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.pwt</groupId>
  23. <artifactId>pwt-framework</artifactId>
  24. </dependency>
  25. <!-- netty -->
  26. <dependency>
  27. <groupId>io.netty</groupId>
  28. <artifactId>netty-all</artifactId>
  29. <version>4.1.36.Final</version>
  30. </dependency>
  31. <!-- lombok组件 -->
  32. <dependency>
  33. <groupId>org.projectlombok</groupId>
  34. <artifactId>lombok</artifactId>
  35. <optional>true</optional>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework</groupId>
  39. <artifactId>spring-test</artifactId>
  40. <version>5.2.22.RELEASE</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.junit.jupiter</groupId>
  44. <artifactId>junit-jupiter</artifactId>
  45. <version>5.9.1</version>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.github.dathlin</groupId>
  50. <artifactId>HslCommunication</artifactId>
  51. <version>3.3.1</version>
  52. </dependency>
  53. <!-- Swagger3依赖 -->
  54. <dependency>
  55. <groupId>io.springfox</groupId>
  56. <artifactId>springfox-boot-starter</artifactId>
  57. <version>3.0.0</version>
  58. <exclusions>
  59. <exclusion>
  60. <groupId>io.swagger</groupId>
  61. <artifactId>swagger-models</artifactId>
  62. </exclusion>
  63. </exclusions>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.pwt</groupId>
  67. <artifactId>pwt-charger-api</artifactId>
  68. <version>3.8.4</version>
  69. </dependency>
  70. </dependencies>
  71. </project>