pom.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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>0.0.1-SNAPSHOT</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. <version>3.5.9</version>
  27. </dependency>
  28. <!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf -->
  29. <dependency>
  30. <groupId>com.itextpdf</groupId>
  31. <artifactId>itextpdf</artifactId>
  32. <version>5.5.13.3</version>
  33. </dependency>
  34. <!-- https://mvnrepository.com/artifact/org.reflections/reflections -->
  35. <dependency>
  36. <groupId>org.reflections</groupId>
  37. <artifactId>reflections</artifactId>
  38. <version>0.10.2</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.microsoft.sqlserver</groupId>
  42. <artifactId>mssql-jdbc</artifactId>
  43. <version>8.2.2.jre8</version>
  44. </dependency>
  45. </dependencies>
  46. <build>
  47. <plugins>
  48. <plugin>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-maven-plugin</artifactId>
  51. </plugin>
  52. </plugins>
  53. </build>
  54. </project>