pom.xml 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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. </dependencies>
  71. <dependencyManagement>
  72. <dependencies>
  73. <dependency>
  74. <groupId>org.springframework.boot</groupId>
  75. <artifactId>spring-boot-dependencies</artifactId>
  76. <version>${spring-boot.version}</version>
  77. <type>pom</type>
  78. <scope>import</scope>
  79. </dependency>
  80. </dependencies>
  81. </dependencyManagement>
  82. <build>
  83. <plugins>
  84. <plugin>
  85. <groupId>org.apache.maven.plugins</groupId>
  86. <artifactId>maven-compiler-plugin</artifactId>
  87. <version>3.8.1</version>
  88. <configuration>
  89. <source>1.8</source>
  90. <target>1.8</target>
  91. <encoding>UTF-8</encoding>
  92. </configuration>
  93. </plugin>
  94. <plugin>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-maven-plugin</artifactId>
  97. <version>${spring-boot.version}</version>
  98. <configuration>
  99. <mainClass>com.firerock.webttkuaiban.WebttkuaibanApplication</mainClass>
  100. <skip>true</skip>
  101. </configuration>
  102. <executions>
  103. <execution>
  104. <id>repackage</id>
  105. <goals>
  106. <goal>repackage</goal>
  107. </goals>
  108. </execution>
  109. </executions>
  110. </plugin>
  111. </plugins>
  112. </build>
  113. <!--配置阿里云仓库-->
  114. <repositories>
  115. <repository>
  116. <id>public</id>
  117. <name>aliyun nexus</name>
  118. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  119. <releases>
  120. <enabled>true</enabled>
  121. </releases>
  122. <snapshots>
  123. <enabled>false</enabled>
  124. </snapshots>
  125. </repository>
  126. </repositories>
  127. <pluginRepositories>
  128. <pluginRepository>
  129. <id>public</id>
  130. <name>aliyun nexus</name>
  131. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  132. <releases>
  133. <enabled>true</enabled>
  134. </releases>
  135. <snapshots>
  136. <enabled>false</enabled>
  137. </snapshots>
  138. </pluginRepository>
  139. </pluginRepositories>
  140. </project>