pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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>3.4.1</version>
  9. <relativePath/> <!-- lookup parent from repository -->
  10. </parent>
  11. <groupId>com.web</groupId>
  12. <artifactId>magic-web</artifactId>
  13. <version>1.1.7</version>
  14. <name>magic-web</name>
  15. <description>magic-web</description>
  16. <properties>
  17. <java.version>21</java.version>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>org.ssssssss</groupId>
  22. <artifactId>magic-api-spring-boot-starter</artifactId>
  23. <version>2.1.1</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.itextpdf</groupId>
  27. <artifactId>itextpdf</artifactId>
  28. <version>5.5.13.3</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.boot</groupId>
  32. <artifactId>spring-boot-starter-web</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.projectlombok</groupId>
  36. <artifactId>lombok</artifactId>
  37. <optional>true</optional>
  38. </dependency>
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-test</artifactId>
  42. <scope>test</scope>
  43. </dependency>
  44. <!-- https://mvnrepository.com/artifact/com.microsoft.sqlserver/mssql-jdbc -->
  45. <dependency>
  46. <groupId>com.microsoft.sqlserver</groupId>
  47. <artifactId>mssql-jdbc</artifactId>
  48. <version>8.2.2.jre8</version>
  49. </dependency>
  50. <!-- https://mvnrepository.com/artifact/com.alibaba/druid-spring-boot-starter -->
  51. <dependency>
  52. <groupId>com.alibaba</groupId>
  53. <artifactId>druid-spring-boot-starter</artifactId>
  54. <version>1.2.20</version>
  55. </dependency>
  56. <!-- https://mvnrepository.com/artifact/cn.hutool/hutool-all -->
  57. <dependency>
  58. <groupId>cn.hutool</groupId>
  59. <artifactId>hutool-all</artifactId>
  60. <version>5.8.27</version>
  61. </dependency>
  62. <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk15on -->
  63. <dependency>
  64. <groupId>org.bouncycastle</groupId>
  65. <artifactId>bcprov-jdk15on</artifactId>
  66. <version>1.70</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.ssssssss</groupId>
  70. <artifactId>magic-api-plugin-task</artifactId>
  71. <version>2.1.1</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.baomidou</groupId>
  75. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  76. <version>3.5.9</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.belerweb</groupId>
  80. <artifactId>pinyin4j</artifactId>
  81. <version>2.5.1</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.tomcat.embed</groupId>
  85. <artifactId>tomcat-embed-core</artifactId>
  86. </dependency>
  87. <!--排除commons-logging-->
  88. <dependency>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-orm</artifactId>
  91. <exclusions>
  92. <exclusion>
  93. <groupId>commons-logging</groupId>
  94. <artifactId>commons-logging</artifactId>
  95. </exclusion>
  96. </exclusions>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.mariadb.jdbc</groupId>
  100. <artifactId>mariadb-java-client</artifactId>
  101. <version>2.3.0</version>
  102. </dependency>
  103. </dependencies>
  104. <build>
  105. <plugins>
  106. <plugin>
  107. <groupId>org.springframework.boot</groupId>
  108. <artifactId>spring-boot-maven-plugin</artifactId>
  109. <configuration>
  110. <excludes>
  111. <exclude>
  112. <groupId>org.projectlombok</groupId>
  113. <artifactId>lombok</artifactId>
  114. </exclude>
  115. </excludes>
  116. </configuration>
  117. </plugin>
  118. </plugins>
  119. </build>
  120. </project>