pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>vip.xiaonuo</groupId>
  8. <artifactId>snowy-plugin-exam</artifactId>
  9. <version>2.0.0</version>
  10. </parent>
  11. <properties>
  12. <spring.boot.version>2.5.12</spring.boot.version>
  13. </properties>
  14. <artifactId>snowy-plugin-exam-func</artifactId>
  15. <packaging>jar</packaging>
  16. <description>考试系统插件func实现</description>
  17. <dependencies>
  18. <dependency>
  19. <groupId>vip.xiaonuo</groupId>
  20. <artifactId>snowy-common</artifactId>
  21. <version>${project.parent.version}</version>
  22. <exclusions>
  23. <exclusion>
  24. <groupId>com.fhs-opensource</groupId>
  25. <artifactId>easy-trans-spring-boot-starter</artifactId>
  26. </exclusion>
  27. <exclusion>
  28. <groupId>com.fhs-opensource</groupId>
  29. <artifactId>easy-trans-mybatis-plus-extend</artifactId>
  30. </exclusion>
  31. </exclusions>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-security</artifactId>
  36. <version>${spring.boot.version}</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-validation</artifactId>
  41. <version>${spring.boot.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-web</artifactId>
  46. <version>${spring.boot.version}</version>
  47. <exclusions>
  48. <exclusion>
  49. <groupId>org.springframework.boot</groupId>
  50. <artifactId>spring-boot-starter-tomcat</artifactId>
  51. </exclusion>
  52. </exclusions>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-undertow</artifactId>
  57. <version>${spring.boot.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.mybatis.spring.boot</groupId>
  61. <artifactId>mybatis-spring-boot-starter</artifactId>
  62. <version>2.1.0</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.github.pagehelper</groupId>
  66. <artifactId>pagehelper-spring-boot-starter</artifactId>
  67. <version>1.2.12</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>mysql</groupId>
  71. <artifactId>mysql-connector-java</artifactId>
  72. <version>${mysql.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.apache.commons</groupId>
  76. <artifactId>commons-pool2</artifactId>
  77. <version>2.6.1</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.apache.httpcomponents</groupId>
  81. <artifactId>httpclient</artifactId>
  82. <version>4.5.9</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.modelmapper</groupId>
  86. <artifactId>modelmapper</artifactId>
  87. <version>2.3.3</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.apache.commons</groupId>
  91. <artifactId>commons-lang3</artifactId>
  92. <version>3.9</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.qiniu</groupId>
  96. <artifactId>qiniu-java-sdk</artifactId>
  97. <version>7.2.25</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.springframework.boot</groupId>
  101. <artifactId>spring-boot-starter-test</artifactId>
  102. <version>${spring.boot.version}</version>
  103. <scope>test</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.security</groupId>
  107. <artifactId>spring-security-test</artifactId>
  108. <scope>test</scope>
  109. </dependency>
  110. <!-- hot debug -->
  111. <dependency>
  112. <groupId>org.springframework.boot</groupId>
  113. <artifactId>spring-boot-devtools</artifactId>
  114. <version>${spring.boot.version}</version>
  115. <scope>provided</scope>
  116. <optional>true</optional>
  117. </dependency>
  118. </dependencies>
  119. </project>