pom.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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>service-activity</artifactId>
  8. <version>1.0.0-SNAPSHOT</version>
  9. <packaging>jar</packaging>
  10. <parent>
  11. <groupId>com.starbuds.server</groupId>
  12. <artifactId>service-parent</artifactId>
  13. <version>1.1.0-SNAPSHOT</version>
  14. </parent>
  15. <build>
  16. <finalName>${project.artifactId}</finalName>
  17. </build>
  18. <properties>
  19. <ons-client.version>1.8.4.Final</ons-client.version>
  20. </properties>
  21. <dependencies>
  22. <!-- https://mvnrepository.com/artifact/com.googlecode.aviator/aviator -->
  23. <dependency>
  24. <groupId>com.googlecode.aviator</groupId>
  25. <artifactId>aviator</artifactId>
  26. <version>4.2.10</version>
  27. </dependency>
  28. <!-- Aliyun ONS -->
  29. <dependency>
  30. <groupId>com.aliyun.openservices</groupId>
  31. <artifactId>ons-client</artifactId>
  32. <version>${ons-client.version}</version>
  33. </dependency>
  34. </dependencies>
  35. </project>