pom.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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-weibull</artifactId>
  6. <version>3.6.2</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>nationrel-module-weibull-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. </dependency>
  30. <dependency>
  31. <groupId>org.apache.poi</groupId>
  32. <artifactId>poi-scratchpad</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.apache.poi</groupId>
  36. <artifactId>poi-ooxml</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.apache.poi</groupId>
  40. <artifactId>poi-excelant</artifactId>
  41. </dependency>
  42. <!-- poi End -->
  43. <dependency>
  44. <groupId>org.apache.commons</groupId>
  45. <artifactId>commons-math3</artifactId>
  46. <version>3.6.1</version>
  47. </dependency>
  48. <!-- joda-time -->
  49. <dependency>
  50. <groupId>joda-time</groupId>
  51. <artifactId>joda-time</artifactId>
  52. <version>2.9.9</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>xml-apis</groupId>
  56. <artifactId>xml-apis</artifactId>
  57. <version>2.0.2</version>
  58. <scope>compile</scope>
  59. </dependency>
  60. </dependencies>
  61. <build>
  62. <plugins>
  63. <plugin>
  64. <groupId>org.apache.maven.plugins</groupId>
  65. <artifactId>maven-source-plugin</artifactId>
  66. <version>${maven-source-plugin.version}</version>
  67. <executions>
  68. <execution>
  69. <id>attach-sources</id>
  70. <goals>
  71. <goal>jar</goal>
  72. </goals>
  73. </execution>
  74. </executions>
  75. </plugin>
  76. </plugins>
  77. </build>
  78. </project>