pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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. <!-- 每个插件都要引入自己的对外接口 -->
  19. <dependency>
  20. <groupId>vip.xiaonuo</groupId>
  21. <artifactId>snowy-plugin-exam-api</artifactId>
  22. </dependency>
  23. <dependency>
  24. <groupId>vip.xiaonuo</groupId>
  25. <artifactId>snowy-common</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-validation</artifactId>
  30. <version>${spring.boot.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-web</artifactId>
  35. <version>${spring.boot.version}</version>
  36. <!-- <exclusions>-->
  37. <!-- <exclusion>-->
  38. <!-- <groupId>org.springframework.boot</groupId>-->
  39. <!-- <artifactId>spring-boot-starter-tomcat</artifactId>-->
  40. <!-- </exclusion>-->
  41. <!-- </exclusions>-->
  42. </dependency>
  43. <!-- <dependency>-->
  44. <!-- <groupId>org.springframework.boot</groupId>-->
  45. <!-- <artifactId>spring-boot-starter-undertow</artifactId>-->
  46. <!-- <version>${spring.boot.version}</version>-->
  47. <!-- </dependency>-->
  48. <dependency>
  49. <groupId>org.mybatis.spring.boot</groupId>
  50. <artifactId>mybatis-spring-boot-starter</artifactId>
  51. <version>2.1.0</version>
  52. </dependency>
  53. <!-- 引入登录鉴权接口,用于获取登录用户 -->
  54. <dependency>
  55. <groupId>vip.xiaonuo</groupId>
  56. <artifactId>snowy-plugin-auth-api</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>mysql</groupId>
  60. <artifactId>mysql-connector-java</artifactId>
  61. <version>${mysql.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.commons</groupId>
  65. <artifactId>commons-pool2</artifactId>
  66. <version>2.6.1</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.httpcomponents</groupId>
  70. <artifactId>httpclient</artifactId>
  71. <version>4.5.9</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>org.modelmapper</groupId>
  75. <artifactId>modelmapper</artifactId>
  76. <version>2.3.3</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>com.github.jsqlparser</groupId>
  80. <artifactId>jsqlparser</artifactId>
  81. <version>4.4</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.commons</groupId>
  85. <artifactId>commons-lang3</artifactId>
  86. <version>3.9</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-starter-test</artifactId>
  91. <version>${spring.boot.version}</version>
  92. <scope>test</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>com.github.pagehelper</groupId>
  96. <artifactId>pagehelper-spring-boot-starter</artifactId>
  97. <version>1.2.12</version>
  98. </dependency>
  99. <!-- hot debug -->
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-devtools</artifactId>
  103. <version>${spring.boot.version}</version>
  104. <scope>provided</scope>
  105. <optional>true</optional>
  106. </dependency>
  107. <dependency>
  108. <groupId>vip.xiaonuo</groupId>
  109. <artifactId>snowy-plugin-dev-api</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>vip.xiaonuo</groupId>
  113. <artifactId>snowy-plugin-disk-api</artifactId>
  114. </dependency>
  115. </dependencies>
  116. </project>