pom.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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.0.0-SNAPSHOT</version>
  14. </parent>
  15. <build>
  16. <finalName>${project.artifactId}</finalName>
  17. <plugins>
  18. <!-- mvn 命令运行 JUnit5 时需要这个插件 -->
  19. <plugin>
  20. <groupId>org.apache.maven.plugins</groupId>
  21. <artifactId>maven-surefire-plugin</artifactId>
  22. <version>3.0.0-M5</version>
  23. </plugin>
  24. </plugins>
  25. </build>
  26. <properties>
  27. <ons-client.version>1.8.4.Final</ons-client.version>
  28. </properties>
  29. <dependencies>
  30. <!-- https://mvnrepository.com/artifact/com.googlecode.aviator/aviator -->
  31. <dependency>
  32. <groupId>com.googlecode.aviator</groupId>
  33. <artifactId>aviator</artifactId>
  34. <version>4.2.10</version>
  35. </dependency>
  36. <!-- Aliyun ONS -->
  37. <dependency>
  38. <groupId>com.aliyun.openservices</groupId>
  39. <artifactId>ons-client</artifactId>
  40. <version>${ons-client.version}</version>
  41. </dependency>
  42. </dependencies>
  43. </project>