pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  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.fdkk</groupId>
  7. <artifactId>im-boot-server</artifactId>
  8. <version>1.0.0</version>
  9. <parent>
  10. <groupId>org.springframework.boot</groupId>
  11. <artifactId>spring-boot-starter-parent</artifactId>
  12. <version>2.5.2</version>
  13. <relativePath/>
  14. </parent>
  15. <properties>
  16. <java.version>1.8</java.version>
  17. <netty.version>4.1.65.Final</netty.version>
  18. <protobuf.version>3.17.0</protobuf.version>
  19. <mysql.jdbc.version>8.0.22</mysql.jdbc.version>
  20. <common.pool.version>2.8.0</common.pool.version>
  21. <swagger.version>3.0.0</swagger.version>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-freemarker</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-data-redis</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-data-jpa</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-configuration-processor</artifactId>
  47. <optional>true</optional>
  48. </dependency>
  49. <dependency>
  50. <groupId>io.springfox</groupId>
  51. <artifactId>springfox-boot-starter</artifactId>
  52. <version>${swagger.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.apache.commons</groupId>
  56. <artifactId>commons-pool2</artifactId>
  57. <version>${common.pool.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>mysql</groupId>
  61. <artifactId>mysql-connector-java</artifactId>
  62. <version>${mysql.jdbc.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>io.netty</groupId>
  66. <artifactId>netty-handler</artifactId>
  67. <version>${netty.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>io.netty</groupId>
  71. <artifactId>netty-buffer</artifactId>
  72. <version>${netty.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>io.netty</groupId>
  76. <artifactId>netty-codec</artifactId>
  77. <version>${netty.version}</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>io.netty</groupId>
  81. <artifactId>netty-codec-http</artifactId>
  82. <version>${netty.version}</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>io.netty</groupId>
  86. <artifactId>netty-common</artifactId>
  87. <version>${netty.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>io.netty</groupId>
  91. <artifactId>netty-transport</artifactId>
  92. <version>${netty.version}</version>
  93. </dependency>
  94. <!-- linux下有效. 其他linux平台自行修改对应的classifier -->
  95. <dependency>
  96. <groupId>io.netty</groupId>
  97. <artifactId>netty-transport-native-epoll</artifactId>
  98. <classifier>linux-x86_64</classifier>
  99. <version>${netty.version}</version>
  100. </dependency>
  101. <!--- ##################使用netty本SDK时的配置 end ##################-->
  102. <dependency>
  103. <groupId>com.google.protobuf</groupId>
  104. <artifactId>protobuf-java</artifactId>
  105. <version>${protobuf.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.eatthepath</groupId>
  109. <artifactId>pushy</artifactId>
  110. <version>0.15.0</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>commons-io</groupId>
  114. <artifactId>commons-io</artifactId>
  115. <version>2.7</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.apache.commons</groupId>
  119. <artifactId>commons-lang3</artifactId>
  120. </dependency>
  121. </dependencies>
  122. <build>
  123. <plugins>
  124. <plugin>
  125. <groupId>org.springframework.boot</groupId>
  126. <artifactId>spring-boot-maven-plugin</artifactId>
  127. <configuration>
  128. <includeSystemScope>true</includeSystemScope>
  129. </configuration>
  130. </plugin>
  131. </plugins>
  132. </build>
  133. </project>