pom.xml 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>tr-modules</artifactId>
  6. <groupId>cn.tr</groupId>
  7. <version>${revision}</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>tr-module-mobile</artifactId>
  11. <packaging>jar</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.tr</groupId>
  15. <artifactId>tr-framework</artifactId>
  16. </dependency>
  17. <!-- 依赖的开源JSON库Gson -->
  18. <dependency>
  19. <groupId>com.google.code.gson</groupId>
  20. <artifactId>gson</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>cn.tr</groupId>
  24. <artifactId>tr-spring-boot-starter-plugin-satoken</artifactId>
  25. </dependency>
  26. <!-- 依赖的netty库 -->
  27. <dependency>
  28. <groupId>io.netty</groupId>
  29. <artifactId>netty-all</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>cn.tr</groupId>
  33. <artifactId>tr-spring-boot-starter-plugin-web</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>cn.tr</groupId>
  37. <artifactId>tr-spring-boot-starter-plugin-mybatis</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.tr</groupId>
  41. <artifactId>tr-module-system-api</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>cn.tr</groupId>
  45. <artifactId>tr-spring-boot-starter-plugin-eventbus</artifactId>
  46. </dependency>
  47. <!-- MobileIMSDK的核心库(此jar没有上传到mave中央库,请注意本地引用路径哦) -->
  48. <dependency>
  49. <groupId>com.x52im</groupId>
  50. <artifactId>mobileimsdk-server</artifactId>
  51. <version>6.5</version>
  52. <scope>system</scope>
  53. <systemPath>${project.basedir}/src/main/lib/MobileIMSDKServer.jar</systemPath>
  54. </dependency>
  55. </dependencies>
  56. </project>