pom.xml 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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-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>org.mybatis.spring.boot</groupId>
  29. <artifactId>mybatis-spring-boot-starter</artifactId>
  30. </dependency>
  31. <!--<dependency>
  32. <groupId>com.baomidou</groupId>
  33. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  34. </dependency>-->
  35. <dependency>
  36. <groupId>io.github.minliuhua</groupId>
  37. <artifactId>warm-flow-mybatis-sb-starter</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.mysql</groupId>
  41. <artifactId>mysql-connector-j</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.projectlombok</groupId>
  45. <artifactId>lombok</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>io.github.minliuhua</groupId>
  49. <artifactId>warm-flow-core-test</artifactId>
  50. </dependency>
  51. <!--<dependency>
  52. <groupId>com.oracle.database.jdbc</groupId>
  53. <artifactId>ojdbc6</artifactId>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.clickhouse</groupId>
  57. <artifactId>clickhouse-jdbc</artifactId>
  58. </dependency>-->
  59. </dependencies>
  60. <dependencyManagement>
  61. <dependencies>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-dependencies</artifactId>
  65. <version>${spring-boot.version}</version>
  66. <type>pom</type>
  67. <scope>import</scope>
  68. </dependency>
  69. </dependencies>
  70. </dependencyManagement>
  71. <build>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-compiler-plugin</artifactId>
  76. <version>3.8.1</version>
  77. <configuration>
  78. <source>1.8</source>
  79. <target>1.8</target>
  80. <encoding>UTF-8</encoding>
  81. </configuration>
  82. </plugin>
  83. <plugin>
  84. <groupId>org.springframework.boot</groupId>
  85. <artifactId>spring-boot-maven-plugin</artifactId>
  86. <version>${spring-boot.version}</version>
  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>