| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>tr-modules</artifactId>
- <groupId>cn.tr</groupId>
- <version>${revision}</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>tr-module-mobile</artifactId>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>cn.tr</groupId>
- <artifactId>tr-framework</artifactId>
- </dependency>
- <!-- 依赖的开源JSON库Gson -->
- <dependency>
- <groupId>com.google.code.gson</groupId>
- <artifactId>gson</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.tr</groupId>
- <artifactId>tr-spring-boot-starter-plugin-satoken</artifactId>
- </dependency>
- <!-- 依赖的netty库 -->
- <dependency>
- <groupId>io.netty</groupId>
- <artifactId>netty-all</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.tr</groupId>
- <artifactId>tr-spring-boot-starter-plugin-web</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.tr</groupId>
- <artifactId>tr-spring-boot-starter-plugin-mybatis</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.tr</groupId>
- <artifactId>tr-module-system-api</artifactId>
- </dependency>
- <dependency>
- <groupId>cn.tr</groupId>
- <artifactId>tr-spring-boot-starter-plugin-eventbus</artifactId>
- </dependency>
- <!-- MobileIMSDK的核心库(此jar没有上传到mave中央库,请注意本地引用路径哦) -->
- <dependency>
- <groupId>com.x52im</groupId>
- <artifactId>mobileimsdk-server</artifactId>
- <version>6.5</version>
- <scope>system</scope>
- <systemPath>${project.basedir}/src/main/lib/MobileIMSDKServer.jar</systemPath>
- </dependency>
- </dependencies>
- </project>
|