pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  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. <!-- 核 心 依 赖 -->
  6. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.3.4.RELEASE</version>
  10. </parent>
  11. <groupId>com.cool.bang</groupId>
  12. <artifactId>data_match</artifactId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <properties>
  15. <java.version>1.8</java.version>
  16. <mybatis.version>2.1.3</mybatis.version>
  17. <pagehelper.version>1.3.0</pagehelper.version>
  18. <druid.version>1.1.22</druid.version>
  19. </properties>
  20. <dependencies>
  21. <!-- 数 据 库 连 接 工 具 -->
  22. <dependency>
  23. <groupId>mysql</groupId>
  24. <artifactId>mysql-connector-java</artifactId>
  25. </dependency>
  26. <!-- Web 启 动 器 -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. <exclusions>
  31. <exclusion>
  32. <groupId>com.fasterxml.jackson.core</groupId>
  33. <artifactId>jackson-databind</artifactId>
  34. </exclusion>
  35. </exclusions>
  36. </dependency>
  37. <!-- test 启 动 器 -->
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-test</artifactId>
  41. <scope>test</scope>
  42. </dependency>
  43. <!-- mybatis 分 页 插 件 -->
  44. <dependency>
  45. <groupId>com.github.pagehelper</groupId>
  46. <artifactId>pagehelper-spring-boot-starter</artifactId>
  47. <version>${pagehelper.version}</version>
  48. </dependency>
  49. <!-- 数 据 源 -->
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>druid-spring-boot-starter</artifactId>
  53. <version>${druid.version}</version>
  54. </dependency>
  55. <!-- 工具类-->
  56. <dependency>
  57. <groupId>cn.hutool</groupId>
  58. <artifactId>hutool-all</artifactId>
  59. <version>5.8.5</version>
  60. </dependency>
  61. <!-- 数 据 库 操 作 框 架 -->
  62. <dependency>
  63. <groupId>org.mybatis.spring.boot</groupId>
  64. <artifactId>mybatis-spring-boot-starter</artifactId>
  65. <version>${mybatis.version}</version>
  66. </dependency>
  67. <!-- mybatis 分 页 插 件 -->
  68. <dependency>
  69. <groupId>com.github.pagehelper</groupId>
  70. <artifactId>pagehelper-spring-boot-starter</artifactId>
  71. <version>${pagehelper.version}</version>
  72. </dependency>
  73. <!-- oracle -->
  74. <dependency>
  75. <groupId>com.oracle</groupId>
  76. <artifactId>ojdbc6</artifactId>
  77. <version>11.2.0.3</version>
  78. </dependency>
  79. <!-- 请求处理 -->
  80. <dependency>
  81. <groupId>org.apache.httpcomponents</groupId>
  82. <artifactId>httpmime</artifactId>
  83. <version>4.5.8</version>
  84. </dependency>
  85. <!-- Gson -->
  86. <dependency>
  87. <groupId>com.google.code.gson</groupId>
  88. <artifactId>gson</artifactId>
  89. <version>2.8.2</version>
  90. </dependency>
  91. </dependencies>
  92. <build>
  93. <plugins>
  94. <plugin>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-maven-plugin</artifactId>
  97. </plugin>
  98. <!-- 跳过单元测试 -->
  99. <plugin>
  100. <groupId>org.apache.maven.plugins</groupId>
  101. <artifactId>maven-surefire-plugin</artifactId>
  102. <configuration>
  103. <skipTests>true</skipTests>
  104. </configuration>
  105. </plugin>
  106. </plugins>
  107. </build>
  108. </project>