pom.xml 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.2.0.RELEASE</version> <!-- 使用最新的稳定版或其他适用版本 -->
  10. <relativePath/> <!-- lookup parent from repository -->
  11. </parent>
  12. <groupId>com.malk.huagao</groupId>
  13. <artifactId>mjava-huagao</artifactId>
  14. <version>1.0-SNAPSHOT</version>
  15. <dependencies>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-web</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-test</artifactId>
  23. <scope>test</scope>
  24. </dependency>
  25. <dependency>
  26. <groupId>mysql</groupId>
  27. <artifactId>mysql-connector-java</artifactId>
  28. <version>8.0.32</version>
  29. <scope>runtime</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.baomidou</groupId>
  33. <artifactId>mybatis-plus-boot-starter</artifactId>
  34. <version>3.5.3.2</version>
  35. </dependency>
  36. <!--MP自动生成器依赖-->
  37. <dependency>
  38. <groupId>com.baomidou</groupId>
  39. <artifactId>mybatis-plus-generator</artifactId>
  40. <version>3.5.3.1</version>
  41. </dependency>
  42. <dependency> <!--自动生成的模板:模板有三种:Velocity(默认)、Freemarker、Beetl -->
  43. <groupId>org.apache.velocity</groupId>
  44. <artifactId>velocity</artifactId>
  45. <version>1.7</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>junit</groupId>
  49. <artifactId>junit</artifactId>
  50. <scope>test</scope>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.projectlombok</groupId>
  54. <artifactId>lombok</artifactId>
  55. <scope>provided</scope>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.malk</groupId>
  59. <artifactId>base</artifactId>
  60. <version>1.1-SNAPSHOT</version>
  61. <scope>compile</scope>
  62. </dependency>
  63. </dependencies>
  64. <build>
  65. <finalName>huagao</finalName>
  66. <plugins>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-compiler-plugin</artifactId>
  70. <version>3.1</version>
  71. <configuration>
  72. <source>1.8</source>
  73. <target>1.8</target>
  74. <encoding>UTF-8</encoding>
  75. </configuration>
  76. </plugin>
  77. <plugin>
  78. <groupId>org.springframework.boot</groupId>
  79. <artifactId>spring-boot-maven-plugin</artifactId>
  80. <configuration>
  81. <executable>true</executable>
  82. <includeSystemScope>true</includeSystemScope>
  83. </configuration>
  84. </plugin>
  85. </plugins>
  86. </build>
  87. <properties>
  88. <maven.compiler.source>8</maven.compiler.source>
  89. <maven.compiler.target>8</maven.compiler.target>
  90. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  91. </properties>
  92. </project>