pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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-fta</artifactId>
  6. <version>3.6.2</version>
  7. </parent>
  8. <modelVersion>4.0.0</modelVersion>
  9. <artifactId>nationrel-module-fta-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. <!-- joda-time -->
  26. <dependency>
  27. <groupId>joda-time</groupId>
  28. <artifactId>joda-time</artifactId>
  29. <version>2.9.9</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>xml-apis</groupId>
  33. <artifactId>xml-apis</artifactId>
  34. <version>2.0.2</version>
  35. <scope>compile</scope>
  36. </dependency>
  37. </dependencies>
  38. <build>
  39. <plugins>
  40. <plugin>
  41. <groupId>org.apache.maven.plugins</groupId>
  42. <artifactId>maven-source-plugin</artifactId>
  43. <version>${maven-source-plugin.version}</version>
  44. <executions>
  45. <execution>
  46. <id>attach-sources</id>
  47. <goals>
  48. <goal>jar</goal>
  49. </goals>
  50. </execution>
  51. </executions>
  52. </plugin>
  53. </plugins>
  54. </build>
  55. </project>