pom.xml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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>game</artifactId>
  7. <groupId>com.game</groupId>
  8. <version>3.8.7</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>game-business</artifactId>
  12. <description>
  13. business业务处理
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-websocket</artifactId>
  19. </dependency>
  20. <!-- 通用工具-->
  21. <dependency>
  22. <groupId>com.game</groupId>
  23. <artifactId>game-common</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.wengying666</groupId>
  27. <artifactId>IMSocket</artifactId>
  28. <version>2.5.6</version>
  29. <scope>compile</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.httpcomponents</groupId>
  33. <artifactId>httpclient</artifactId>
  34. <version>4.5.13</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.httpcomponents</groupId>
  38. <artifactId>httpmime</artifactId>
  39. <version>4.5.13</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>io.springfox</groupId>
  43. <artifactId>springfox-core</artifactId>
  44. <version>3.0.0</version>
  45. <scope>compile</scope>
  46. </dependency>
  47. </dependencies>
  48. </project>