pom.xml 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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.firerock</groupId>
  6. <artifactId>webttkuaiban</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>webttkuaiban</name>
  9. <description>webttkuaiban</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>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-freemarker</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-web</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. <optional>true</optional>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-test</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. <dependency>
  40. <groupId>mysql</groupId>
  41. <artifactId>mysql-connector-java</artifactId>
  42. <scope>runtime</scope>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.baomidou</groupId>
  46. <artifactId>mybatis-plus-boot-starter</artifactId>
  47. <version>3.1.2</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.baomidou</groupId>
  51. <artifactId>mybatis-plus-generator</artifactId>
  52. <version>3.1.2</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.projectlombok</groupId>
  56. <artifactId>lombok</artifactId>
  57. <optional>true</optional>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.freemarker</groupId>
  61. <artifactId>freemarker</artifactId>
  62. <version>2.3.28</version>
  63. <scope>compile</scope>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.alibaba</groupId>
  67. <artifactId>fastjson</artifactId>
  68. <version>1.2.7</version>
  69. </dependency>
  70. <!--分页查询插件-->
  71. <dependency>
  72. <groupId>com.github.pagehelper</groupId>
  73. <artifactId>pagehelper-spring-boot-starter</artifactId>
  74. <version>1.4.6</version>
  75. </dependency>
  76. </dependencies>
  77. <dependencyManagement>
  78. <dependencies>
  79. <dependency>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-dependencies</artifactId>
  82. <version>${spring-boot.version}</version>
  83. <type>pom</type>
  84. <scope>import</scope>
  85. </dependency>
  86. </dependencies>
  87. </dependencyManagement>
  88. <build>
  89. <plugins>
  90. <plugin>
  91. <groupId>org.apache.maven.plugins</groupId>
  92. <artifactId>maven-compiler-plugin</artifactId>
  93. <version>3.8.1</version>
  94. <configuration>
  95. <source>1.8</source>
  96. <target>1.8</target>
  97. <encoding>UTF-8</encoding>
  98. </configuration>
  99. </plugin>
  100. <plugin>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-maven-plugin</artifactId>
  103. <version>${spring-boot.version}</version>
  104. <configuration>
  105. <mainClass>com.firerock.webttkuaiban.WebttkuaibanApplication</mainClass>
  106. <!-- <skip>true</skip>-->
  107. </configuration>
  108. <executions>
  109. <execution>
  110. <id>repackage</id>
  111. <goals>
  112. <goal>repackage</goal>
  113. </goals>
  114. </execution>
  115. </executions>
  116. </plugin>
  117. </plugins>
  118. </build>
  119. <!--配置阿里云仓库-->
  120. <repositories>
  121. <repository>
  122. <id>public</id>
  123. <name>aliyun nexus</name>
  124. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  125. <releases>
  126. <enabled>true</enabled>
  127. </releases>
  128. <snapshots>
  129. <enabled>false</enabled>
  130. </snapshots>
  131. </repository>
  132. </repositories>
  133. <pluginRepositories>
  134. <pluginRepository>
  135. <id>public</id>
  136. <name>aliyun nexus</name>
  137. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  138. <releases>
  139. <enabled>true</enabled>
  140. </releases>
  141. <snapshots>
  142. <enabled>false</enabled>
  143. </snapshots>
  144. </pluginRepository>
  145. </pluginRepositories>
  146. </project>