pom.xml 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?xml version="1.0"?>
  2. <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  4. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>com.wei</groupId>
  8. <artifactId>base-springframework</artifactId>
  9. <version>0.0.1-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>base-springframework-mybatis-plus</artifactId>
  12. <properties>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <java.version>1.8</java.version>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. <spring-boot-maven-plugin.version>2.3.4.RELEASE</spring-boot-maven-plugin.version>
  17. <mybatis-plus.version>3.3.2</mybatis-plus.version>
  18. <freemarker.version>2.3.30</freemarker.version>
  19. </properties>
  20. <dependencies>
  21. <dependency>
  22. <groupId>com.wei</groupId>
  23. <artifactId>base-springframework-util</artifactId>
  24. <version>${project.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>com.baomidou</groupId>
  28. <artifactId>mybatis-plus-boot-starter</artifactId>
  29. <version>${mybatis-plus.version}</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>com.baomidou</groupId>
  33. <artifactId>mybatis-plus-generator</artifactId>
  34. <version>${mybatis-plus.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.freemarker</groupId>
  38. <artifactId>freemarker</artifactId>
  39. <version>${freemarker.version}</version>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <pluginManagement>
  44. <plugins>
  45. <plugin>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-maven-plugin</artifactId>
  48. <version>${spring-boot-maven-plugin.version}</version>
  49. <executions>
  50. <execution>
  51. <goals>
  52. <goal>repackage</goal>
  53. </goals>
  54. </execution>
  55. </executions>
  56. </plugin>
  57. </plugins>
  58. </pluginManagement>
  59. </build>
  60. </project>