pom.xml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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
  5. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>com.yuxin.finrep</groupId>
  9. <artifactId>finrep-parent</artifactId>
  10. <version>1.0.0-SNAPSHOT</version>
  11. <relativePath>../pom.xml</relativePath>
  12. </parent>
  13. <artifactId>finrep-common</artifactId>
  14. <name>Financial Report Generation - Common</name>
  15. <description>Common utilities, context, exceptions, and constants</description>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-web</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>cn.hutool</groupId>
  27. <artifactId>hutool-all</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.apache.commons</groupId>
  31. <artifactId>commons-lang3</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.alibaba.fastjson2</groupId>
  35. <artifactId>fastjson2</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.alibaba</groupId>
  39. <artifactId>transmittable-thread-local</artifactId>
  40. <version>2.14.5</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.projectlombok</groupId>
  44. <artifactId>lombok</artifactId>
  45. <scope>provided</scope>
  46. </dependency>
  47. </dependencies>
  48. </project>