pom.xml 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.starbuds.server</groupId>
  7. <artifactId>im-server</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <parent>
  10. <groupId>com.starbuds.server</groupId>
  11. <artifactId>service-parent</artifactId>
  12. <version>1.0.0-SNAPSHOT</version>
  13. </parent>
  14. <properties>
  15. <t-io.version>3.5.8.v20191228-RELEASE</t-io.version>
  16. <ons-client.version>1.8.4.Final</ons-client.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>org.t-io</groupId>
  21. <artifactId>tio-websocket-server</artifactId>
  22. <version>${t-io.version}</version>
  23. </dependency>
  24. <!-- Aliyun ONS -->
  25. <dependency>
  26. <groupId>com.aliyun.openservices</groupId>
  27. <artifactId>ons-client</artifactId>
  28. <version>${ons-client.version}</version>
  29. </dependency>
  30. </dependencies>
  31. <build>
  32. <finalName>${project.artifactId}</finalName>
  33. </build>
  34. </project>