pom.xml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <parent>
  4. <groupId>com.nationrel.boot</groupId>
  5. <artifactId>nationrel-module-alta</artifactId>
  6. <version>3.6.2</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>nationrel-module-alta-api</artifactId>
  10. <dependencies>
  11. <dependency>
  12. <groupId>com.nationrel.boot</groupId>
  13. <artifactId>nationrel-boot-base-core</artifactId>
  14. </dependency>
  15. <!-- feign -->
  16. <dependency>
  17. <groupId>org.springframework.cloud</groupId>
  18. <artifactId>spring-cloud-starter-openfeign</artifactId>
  19. </dependency>
  20. <!-- sentinel限流熔断降级-->
  21. <dependency>
  22. <groupId>com.alibaba.cloud</groupId>
  23. <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
  24. </dependency>
  25. <!-- poi Start -->
  26. <dependency>
  27. <groupId>org.apache.poi</groupId>
  28. <artifactId>poi</artifactId>
  29. <version>3.9</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.apache.poi</groupId>
  33. <artifactId>poi-scratchpad</artifactId>
  34. <version>3.9</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.apache.poi</groupId>
  38. <artifactId>poi-ooxml</artifactId>
  39. <version>3.9</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.poi</groupId>
  43. <artifactId>poi-excelant</artifactId>
  44. <version>3.9</version>
  45. </dependency>
  46. <!-- poi End -->
  47. <dependency>
  48. <groupId>org.apache.commons</groupId>
  49. <artifactId>commons-math3</artifactId>
  50. <version>3.6.1</version>
  51. </dependency>
  52. <!-- joda-time -->
  53. <dependency>
  54. <groupId>joda-time</groupId>
  55. <artifactId>joda-time</artifactId>
  56. <version>2.9.9</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>xml-apis</groupId>
  60. <artifactId>xml-apis</artifactId>
  61. <version>2.0.2</version>
  62. <scope>compile</scope>
  63. </dependency>
  64. </dependencies>
  65. <build>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-source-plugin</artifactId>
  70. <version>${maven-source-plugin.version}</version>
  71. <executions>
  72. <execution>
  73. <id>attach-sources</id>
  74. <goals>
  75. <goal>jar</goal>
  76. </goals>
  77. </execution>
  78. </executions>
  79. </plugin>
  80. </plugins>
  81. </build>
  82. </project>