pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-validation</artifactId>
  25. <version>${spring.boot.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. <version>${spring.boot.version}</version>
  31. <exclusions>
  32. <exclusion>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-tomcat</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-undertow</artifactId>
  41. <version>${spring.boot.version}</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.mybatis.spring.boot</groupId>
  45. <artifactId>mybatis-spring-boot-starter</artifactId>
  46. <version>2.1.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>mysql</groupId>
  50. <artifactId>mysql-connector-java</artifactId>
  51. <version>${mysql.version}</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.commons</groupId>
  55. <artifactId>commons-pool2</artifactId>
  56. <version>2.6.1</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.httpcomponents</groupId>
  60. <artifactId>httpclient</artifactId>
  61. <version>4.5.9</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.modelmapper</groupId>
  65. <artifactId>modelmapper</artifactId>
  66. <version>2.3.3</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.github.jsqlparser</groupId>
  70. <artifactId>jsqlparser</artifactId>
  71. <version>4.4</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.apache.commons</groupId>
  75. <artifactId>commons-lang3</artifactId>
  76. <version>3.9</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-test</artifactId>
  81. <version>${spring.boot.version}</version>
  82. <scope>test</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.github.pagehelper</groupId>
  86. <artifactId>pagehelper-spring-boot-starter</artifactId>
  87. <version>1.2.12</version>
  88. </dependency>
  89. <!-- hot debug -->
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-devtools</artifactId>
  93. <version>${spring.boot.version}</version>
  94. <scope>provided</scope>
  95. <optional>true</optional>
  96. </dependency>
  97. </dependencies>
  98. </project>