pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  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. <parent>
  6. <groupId>io.github.minliuhua</groupId>
  7. <artifactId>warm-flow-test</artifactId>
  8. <version>${revision}</version>
  9. </parent>
  10. <artifactId>warm-flow-mybatis-plus-sb-test</artifactId>
  11. <properties>
  12. <java.version>1.8</java.version>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  15. <spring-boot.version>2.6.13</spring-boot.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-test</artifactId>
  25. <scope>test</scope>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.baomidou</groupId>
  29. <artifactId>mybatis-plus-boot-starter</artifactId>
  30. <version>3.5.1</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>io.github.minliuhua</groupId>
  34. <artifactId>warm-flow-mybatis-plus-sb-starter</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>com.mysql</groupId>
  38. <artifactId>mysql-connector-j</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.projectlombok</groupId>
  42. <artifactId>lombok</artifactId>
  43. <scope>provided</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>io.github.minliuhua</groupId>
  47. <artifactId>warm-flow-core-test</artifactId>
  48. <scope>compile</scope>
  49. </dependency>
  50. <!-- Oracle数据库时打开 -->
  51. <!--<dependency>
  52. <groupId>com.oracle.database.jdbc</groupId>
  53. <artifactId>ojdbc6</artifactId>
  54. </dependency>-->
  55. </dependencies>
  56. <dependencyManagement>
  57. <dependencies>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-dependencies</artifactId>
  61. <version>${spring-boot.version}</version>
  62. <type>pom</type>
  63. <scope>import</scope>
  64. </dependency>
  65. </dependencies>
  66. </dependencyManagement>
  67. <build>
  68. <plugins>
  69. <plugin>
  70. <groupId>org.apache.maven.plugins</groupId>
  71. <artifactId>maven-compiler-plugin</artifactId>
  72. <version>3.8.1</version>
  73. <configuration>
  74. <source>1.8</source>
  75. <target>1.8</target>
  76. <encoding>UTF-8</encoding>
  77. </configuration>
  78. </plugin>
  79. <plugin>
  80. <groupId>org.springframework.boot</groupId>
  81. <artifactId>spring-boot-maven-plugin</artifactId>
  82. <version>${spring-boot.version}</version>
  83. <configuration>
  84. <mainClass>com.warm.flow.mybatis.sb.MybatisTestApplication</mainClass>
  85. <skip>true</skip>
  86. </configuration>
  87. <executions>
  88. <execution>
  89. <id>repackage</id>
  90. <goals>
  91. <goal>repackage</goal>
  92. </goals>
  93. </execution>
  94. </executions>
  95. </plugin>
  96. </plugins>
  97. </build>
  98. </project>