Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 

81 linhas
2.8 KiB

  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. <groupId>com.iformall</groupId>
  7. <artifactId>mybatis-multi-tenancy</artifactId>
  8. <version>1.0</version>
  9. <dependencies>
  10. <dependency>
  11. <groupId>com.github.jsqlparser</groupId>
  12. <artifactId>jsqlparser</artifactId>
  13. <version>2.0</version>
  14. <scope>compile</scope>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.mybatis</groupId>
  18. <artifactId>mybatis</artifactId>
  19. <version>3.5.4</version>
  20. <scope>compile</scope>
  21. </dependency>
  22. <!--测试期间依赖-->
  23. <dependency>
  24. <scope>test</scope>
  25. <groupId>junit</groupId>
  26. <artifactId>junit</artifactId>
  27. <version>4.12</version>
  28. </dependency>
  29. <dependency>
  30. <scope>test</scope>
  31. <groupId>mysql</groupId>
  32. <artifactId>mysql-connector-java</artifactId>
  33. <version>8.0.19</version>
  34. </dependency>
  35. <dependency>
  36. <scope>test</scope>
  37. <groupId>com.alibaba</groupId>
  38. <artifactId>druid</artifactId>
  39. <version>1.1.22</version>
  40. </dependency>
  41. </dependencies>
  42. <build>
  43. <plugins>
  44. <plugin>
  45. <groupId>org.apache.maven.plugins</groupId>
  46. <artifactId>maven-compiler-plugin</artifactId>
  47. <version>2.3.2</version>
  48. <configuration>
  49. <source>1.8</source>
  50. <target>1.8</target>
  51. <encoding>utf-8</encoding>
  52. </configuration>
  53. </plugin>
  54. <plugin>
  55. <artifactId>maven-source-plugin</artifactId>
  56. <version>2.4</version>
  57. <executions>
  58. <execution>
  59. <phase>package</phase>
  60. <goals>
  61. <goal>jar-no-fork</goal>
  62. </goals>
  63. </execution>
  64. </executions>
  65. </plugin>
  66. <plugin>
  67. <artifactId>maven-surefire-plugin</artifactId>
  68. <version>2.9</version>
  69. <configuration>
  70. <!--跳过单元测试-->
  71. <skip>false</skip>
  72. <!--单元测试乱码-->
  73. <forkMode>once</forkMode>
  74. <argLine>-Dfile.encoding=UTF-8</argLine>
  75. </configuration>
  76. </plugin>
  77. </plugins>
  78. </build>
  79. </project>