pom.xml 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.bosshand.virgo</groupId>
  6. <artifactId>api</artifactId>
  7. <!-- Inherit defaults from Spring Boot -->
  8. <parent>
  9. <groupId>com.bosshand</groupId>
  10. <artifactId>virgo</artifactId>
  11. <version>0.0.1-SNAPSHOT</version>
  12. <relativePath>../pom.xml</relativePath>
  13. </parent>
  14. <dependencies>
  15. <!-- LEO associate dependency -->
  16. <dependency>
  17. <groupId>com.bosshand.virgo</groupId>
  18. <artifactId>core</artifactId>
  19. <version>0.0.1-SNAPSHOT</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.squareup.okhttp3</groupId>
  23. <artifactId>okhttp</artifactId>
  24. <version>3.6.0</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-starter-openfeign</artifactId>
  29. </dependency>
  30. <!--quartz依赖-->
  31. <dependency>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-starter-quartz</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.apache.poi</groupId>
  37. <artifactId>poi-ooxml</artifactId>
  38. <version>4.1.2</version>
  39. </dependency>
  40. <!-- 文件上传 -->
  41. <dependency>
  42. <groupId>org.apache.httpcomponents</groupId>
  43. <artifactId>httpmime</artifactId>
  44. <version>4.5.7</version>
  45. </dependency>
  46. <!-- POI -->
  47. <dependency>
  48. <groupId>org.apache.poi</groupId>
  49. <artifactId>poi-ooxml</artifactId>
  50. <version>3.16</version>
  51. </dependency>
  52. </dependencies>
  53. <!-- Package as an executable jar -->
  54. <build>
  55. <plugins>
  56. <plugin>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-maven-plugin</artifactId>
  59. </plugin>
  60. </plugins>
  61. </build>
  62. </project>