pom.xml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. <!-- MobileIMSDK的核心库(此jar没有上传到mave中央库,请注意本地引用路径哦) -->
  32. <dependency>
  33. <groupId>com.x52im</groupId>
  34. <artifactId>mobileimsdk-server</artifactId>
  35. <version>6.5</version>
  36. <scope>system</scope>
  37. <systemPath>${project.basedir}/src/main/lib/MobileIMSDKServer.jar</systemPath>
  38. </dependency>
  39. </dependencies>
  40. </project>