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"
  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. <parent>
  6. <groupId>org.thyy.business</groupId>
  7. <artifactId>thyy-business</artifactId>
  8. <version>0.0.1</version>
  9. </parent>
  10. <artifactId>thyy-archive</artifactId>
  11. <version>${thyy-archive}</version>
  12. <name>thyy-archive</name>
  13. <description>thyy-archive</description>
  14. <properties>
  15. <java.version>21</java.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter</artifactId>
  21. </dependency>
  22. <!-- https://mvnrepository.com/artifact/com.baomidou/mybatis-plus-generator -->
  23. <dependency>
  24. <groupId>com.baomidou</groupId>
  25. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  26. </dependency>
  27. <!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf -->
  28. <dependency>
  29. <groupId>com.itextpdf</groupId>
  30. <artifactId>itextpdf</artifactId>
  31. <version>5.5.13.3</version>
  32. </dependency>
  33. <!-- https://mvnrepository.com/artifact/org.reflections/reflections -->
  34. <dependency>
  35. <groupId>org.reflections</groupId>
  36. <artifactId>reflections</artifactId>
  37. <version>0.10.2</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.thyy.business</groupId>
  41. <artifactId>thyy-utils</artifactId>
  42. </dependency>
  43. </dependencies>
  44. <build>
  45. <plugins>
  46. <plugin>
  47. <groupId>org.springframework.boot</groupId>
  48. <artifactId>spring-boot-maven-plugin</artifactId>
  49. </plugin>
  50. </plugins>
  51. </build>
  52. </project>