北京机场
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

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