pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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-task</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. <properties>
  16. <ons-client.version>1.8.4.Final</ons-client.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.xuxueli</groupId>
  21. <artifactId>xxl-job-core</artifactId>
  22. <version>2.1.2</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.squareup.okhttp3</groupId>
  26. <artifactId>okhttp</artifactId>
  27. <version>4.9.0</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.aliyun.openservices</groupId>
  31. <artifactId>ons-client</artifactId>
  32. <version>${ons-client.version}</version>
  33. </dependency>
  34. <!-- Excel处理 https://mvnrepository.com/artifact/com.alibaba/easyexcel -->
  35. <dependency>
  36. <groupId>com.alibaba</groupId>
  37. <artifactId>easyexcel</artifactId>
  38. <version>2.2.10</version>
  39. </dependency>
  40. </dependencies>
  41. <build>
  42. <finalName>${project.artifactId}</finalName>
  43. <plugins>
  44. <!-- mvn 命令运行 JUnit5 时需要这个插件 -->
  45. <plugin>
  46. <groupId>org.apache.maven.plugins</groupId>
  47. <artifactId>maven-surefire-plugin</artifactId>
  48. <version>3.0.0-M5</version>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </project>