pom.xml 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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.zt</groupId>
  6. <artifactId>yueFsj_java</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>yueFsj_java</name>
  9. <description>yueFsj_java</description>
  10. <properties>
  11. <java.version>17</java.version>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  14. <spring-boot.version>3.0.2</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>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-security</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>com.mysql</groupId>
  27. <artifactId>mysql-connector-j</artifactId>
  28. <scope>runtime</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.projectlombok</groupId>
  32. <artifactId>lombok</artifactId>
  33. <optional>true</optional>
  34. </dependency>
  35. <!--jwt工具-->
  36. <dependency>
  37. <groupId>io.jsonwebtoken</groupId>
  38. <artifactId>jjwt-api</artifactId>
  39. <version>0.11.2</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>io.jsonwebtoken</groupId>
  43. <artifactId>jjwt-impl</artifactId>
  44. <version>0.11.2</version>
  45. <scope>runtime</scope>
  46. </dependency>
  47. <dependency>
  48. <groupId>io.jsonwebtoken</groupId>
  49. <artifactId>jjwt-jackson</artifactId>
  50. <version>0.11.2</version>
  51. <scope>runtime</scope>
  52. </dependency>
  53. <!--mybatisplus-->
  54. <dependency>
  55. <groupId>com.baomidou</groupId>
  56. <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
  57. <version>3.5.4</version>
  58. </dependency>
  59. <!--mybatisplus生成工具-->
  60. <dependency>
  61. <groupId>com.baomidou</groupId>
  62. <artifactId>mybatis-plus-generator</artifactId>
  63. <version>3.5.4</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.apache.velocity</groupId>
  67. <artifactId>velocity-engine-core</artifactId>
  68. <version>2.3</version>
  69. </dependency>
  70. <!--阿里巴巴fastjson-->
  71. <dependency>
  72. <groupId>com.alibaba</groupId>
  73. <artifactId>fastjson</artifactId>
  74. <version>1.2.83</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-test</artifactId>
  79. <scope>test</scope>
  80. </dependency>
  81. </dependencies>
  82. <dependencyManagement>
  83. <dependencies>
  84. <dependency>
  85. <groupId>org.springframework.boot</groupId>
  86. <artifactId>spring-boot-dependencies</artifactId>
  87. <version>${spring-boot.version}</version>
  88. <type>pom</type>
  89. <scope>import</scope>
  90. </dependency>
  91. </dependencies>
  92. </dependencyManagement>
  93. <build>
  94. <plugins>
  95. <plugin>
  96. <groupId>org.apache.maven.plugins</groupId>
  97. <artifactId>maven-compiler-plugin</artifactId>
  98. <version>3.8.1</version>
  99. <configuration>
  100. <source>17</source>
  101. <target>17</target>
  102. <encoding>UTF-8</encoding>
  103. </configuration>
  104. </plugin>
  105. <plugin>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-maven-plugin</artifactId>
  108. <version>${spring-boot.version}</version>
  109. <configuration>
  110. <mainClass>com.zt.YueFsjJavaApplication</mainClass>
  111. <skip>true</skip>
  112. </configuration>
  113. <executions>
  114. <execution>
  115. <id>repackage</id>
  116. <goals>
  117. <goal>repackage</goal>
  118. </goals>
  119. </execution>
  120. </executions>
  121. </plugin>
  122. </plugins>
  123. </build>
  124. </project>