pom.xml 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.6.1</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>thyyxxk</groupId>
  12. <artifactId>SiMzFeeOprnSystm</artifactId>
  13. <version>3.1.6</version>
  14. <name>SiMzFeeOprnSystm</name>
  15. <description>SiMzFeeOprnSystm</description>
  16. <properties>
  17. <java.version>1.8</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.baomidou</groupId>
  26. <artifactId>mybatis-plus-boot-starter</artifactId>
  27. <version>3.4.3.4</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>com.baomidou</groupId>
  31. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  32. <version>3.3.2</version>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-devtools</artifactId>
  37. <scope>runtime</scope>
  38. <optional>true</optional>
  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. <dependency>
  46. <groupId>net.sourceforge.jtds</groupId>
  47. <artifactId>jtds</artifactId>
  48. <version>1.3.1</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.projectlombok</groupId>
  52. <artifactId>lombok</artifactId>
  53. <optional>true</optional>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.boot</groupId>
  57. <artifactId>spring-boot-starter-test</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  61. <dependency>
  62. <groupId>com.alibaba</groupId>
  63. <artifactId>fastjson</artifactId>
  64. <version>2.0.52</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.apache.httpcomponents</groupId>
  68. <artifactId>httpclient</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.dtflys.forest</groupId>
  72. <artifactId>forest-spring-boot-starter</artifactId>
  73. <version>1.5.35</version>
  74. </dependency>
  75. <!-- https://mvnrepository.com/artifact/org.mariadb.jdbc/mariadb-java-client -->
  76. <dependency>
  77. <groupId>org.mariadb.jdbc</groupId>
  78. <artifactId>mariadb-java-client</artifactId>
  79. <version>3.1.2</version>
  80. </dependency>
  81. <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
  82. <dependency>
  83. <groupId>org.bouncycastle</groupId>
  84. <artifactId>bcprov-jdk15on</artifactId>
  85. <version>1.60</version>
  86. </dependency>
  87. <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcpkix-jdk15on -->
  88. <dependency>
  89. <groupId>org.bouncycastle</groupId>
  90. <artifactId>bcpkix-jdk15on</artifactId>
  91. <version>1.60</version>
  92. </dependency>
  93. <!-- https://mvnrepository.com/artifact/com.itextpdf/itextpdf -->
  94. <dependency>
  95. <groupId>com.itextpdf</groupId>
  96. <artifactId>itextpdf</artifactId>
  97. <version>5.5.13.3</version>
  98. </dependency>
  99. <!-- https://mvnrepository.com/artifact/com.itextpdf/itext-asian -->
  100. <dependency>
  101. <groupId>com.itextpdf</groupId>
  102. <artifactId>itext-asian</artifactId>
  103. <version>5.2.0</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.belerweb</groupId>
  107. <artifactId>pinyin4j</artifactId>
  108. <version>2.5.1</version>
  109. </dependency>
  110. </dependencies>
  111. <build>
  112. <plugins>
  113. <plugin>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-maven-plugin</artifactId>
  116. <configuration>
  117. <excludes>
  118. <exclude>
  119. <groupId>org.projectlombok</groupId>
  120. <artifactId>lombok</artifactId>
  121. </exclude>
  122. </excludes>
  123. </configuration>
  124. </plugin>
  125. </plugins>
  126. </build>
  127. </project>