pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. <groupId>com.zhentao</groupId>
  6. <artifactId>goose_course</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>goose_course</name>
  9. <description>goose_course</description>
  10. <properties>
  11. <java.version>1.8</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>2.6.13</spring-boot.version>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>com.mysql</groupId>
  23. <artifactId>mysql-connector-j</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.baomidou</groupId>
  27. <artifactId>mybatis-plus-boot-starter</artifactId>
  28. <version>3.5.3.1</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.projectlombok</groupId>
  32. <artifactId>lombok</artifactId>
  33. <optional>true</optional>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-test</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. <dependency>
  41. <groupId>io.jsonwebtoken</groupId>
  42. <artifactId>jjwt</artifactId>
  43. <version>0.9.0</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.auth0</groupId>
  47. <artifactId>java-jwt</artifactId>
  48. <version>3.10.1</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.shiro</groupId>
  52. <artifactId>shiro-spring</artifactId>
  53. <version>1.8.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.apache.commons</groupId>
  57. <artifactId>commons-lang3</artifactId>
  58. <version>3.9</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>commons-codec</groupId>
  62. <artifactId>commons-codec</artifactId>
  63. <version>1.14</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.commons</groupId>
  67. <artifactId>commons-collections4</artifactId>
  68. <version>4.4</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.alibaba</groupId>
  72. <artifactId>fastjson</artifactId>
  73. <version>1.2.83</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.springframework.boot</groupId>
  77. <artifactId>spring-boot-starter-json</artifactId>
  78. </dependency>
  79. <dependency>
  80. <groupId>javax.validation</groupId>
  81. <artifactId>validation-api</artifactId>
  82. </dependency>
  83. <!-- ini格式处理 -->
  84. <dependency>
  85. <groupId>org.ini4j</groupId>
  86. <artifactId>ini4j</artifactId>
  87. <version>0.5.4</version>
  88. </dependency>
  89. <!-- AOP依赖,必须,否则shiro权限拦截验证不生效 -->
  90. <dependency>
  91. <groupId>org.springframework.boot</groupId>
  92. <artifactId>spring-boot-starter-aop</artifactId>
  93. </dependency>
  94. </dependencies>
  95. <dependencyManagement>
  96. <dependencies>
  97. <dependency>
  98. <groupId>org.springframework.boot</groupId>
  99. <artifactId>spring-boot-dependencies</artifactId>
  100. <version>${spring-boot.version}</version>
  101. <type>pom</type>
  102. <scope>import</scope>
  103. </dependency>
  104. </dependencies>
  105. </dependencyManagement>
  106. <build>
  107. <plugins>
  108. <plugin>
  109. <groupId>org.apache.maven.plugins</groupId>
  110. <artifactId>maven-compiler-plugin</artifactId>
  111. <version>3.8.1</version>
  112. <configuration>
  113. <source>1.8</source>
  114. <target>1.8</target>
  115. <encoding>UTF-8</encoding>
  116. </configuration>
  117. </plugin>
  118. <plugin>
  119. <groupId>org.springframework.boot</groupId>
  120. <artifactId>spring-boot-maven-plugin</artifactId>
  121. <version>${spring-boot.version}</version>
  122. <configuration>
  123. <mainClass>com.zhentao.GooseCourseApplication</mainClass>
  124. <skip>true</skip>
  125. </configuration>
  126. <executions>
  127. <execution>
  128. <id>repackage</id>
  129. <goals>
  130. <goal>repackage</goal>
  131. </goals>
  132. </execution>
  133. </executions>
  134. </plugin>
  135. </plugins>
  136. </build>
  137. </project>