12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.starbuds.server</groupId>
- <artifactId>im-server</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <parent>
- <groupId>com.starbuds.server</groupId>
- <artifactId>service-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </parent>
- <properties>
- <t-io.version>3.5.8.v20191228-RELEASE</t-io.version>
- <ons-client.version>1.8.4.Final</ons-client.version>
- </properties>
- <dependencies>
- <dependency>
- <groupId>org.t-io</groupId>
- <artifactId>tio-websocket-server</artifactId>
- <version>${t-io.version}</version>
- </dependency>
- <!-- Aliyun ONS -->
- <dependency>
- <groupId>com.aliyun.openservices</groupId>
- <artifactId>ons-client</artifactId>
- <version>${ons-client.version}</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>${project.artifactId}</finalName>
- </build>
- </project>
|