1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?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>service-activity</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <packaging>jar</packaging>
- <parent>
- <groupId>com.starbuds.server</groupId>
- <artifactId>service-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- </parent>
- <build>
- <finalName>${project.artifactId}</finalName>
- </build>
- <properties>
- <ons-client.version>1.8.4.Final</ons-client.version>
- </properties>
- <dependencies>
- <!-- https://mvnrepository.com/artifact/com.googlecode.aviator/aviator -->
- <dependency>
- <groupId>com.googlecode.aviator</groupId>
- <artifactId>aviator</artifactId>
- <version>4.2.10</version>
- </dependency>
- <!-- Aliyun ONS -->
- <dependency>
- <groupId>com.aliyun.openservices</groupId>
- <artifactId>ons-client</artifactId>
- <version>${ons-client.version}</version>
- </dependency>
- </dependencies>
- </project>
|