pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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. <parent>
  7. <groupId>org.springframework.boot</groupId>
  8. <artifactId>spring-boot-starter-parent</artifactId>
  9. <version>2.2.8.RELEASE</version>
  10. <relativePath/>
  11. </parent>
  12. <artifactId>general-data</artifactId>
  13. <groupId>com.huashe.common</groupId>
  14. <version>1.0.0-SNAPSHOT</version>
  15. <description>通用数据服务</description>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <java.version>1.8</java.version>
  20. <maven.compiler.source>${java.version}</maven.compiler.source>
  21. <maven.compiler.target>${java.version}</maven.compiler.target>
  22. </properties>
  23. <dependencies>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-test</artifactId>
  31. <scope>test</scope>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-web</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-configuration-processor</artifactId>
  40. <optional>true</optional>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.springframework.boot</groupId>
  44. <artifactId>spring-boot-starter-data-redis</artifactId>
  45. </dependency>
  46. <!-- JSON序列化支持 -->
  47. <dependency>
  48. <groupId>com.fasterxml.jackson.core</groupId>
  49. <artifactId>jackson-databind</artifactId>
  50. </dependency>
  51. <!-- mysql驱动 -->
  52. <dependency>
  53. <groupId>com.mysql</groupId>
  54. <artifactId>mysql-connector-j</artifactId>
  55. <version>8.0.33</version>
  56. </dependency>
  57. <!-- Druid 数据库连接池依赖 -->
  58. <dependency>
  59. <groupId>com.alibaba</groupId>
  60. <artifactId>druid</artifactId>
  61. <version>1.1.19</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.alibaba</groupId>
  65. <artifactId>druid-spring-boot-starter</artifactId>
  66. <version>1.1.10</version>
  67. </dependency>
  68. <!-- Mybatis -->
  69. <dependency>
  70. <groupId>org.mybatis.spring.boot</groupId>
  71. <artifactId>mybatis-spring-boot-starter</artifactId>
  72. <version>1.1.1</version>
  73. </dependency>
  74. <!-- https://mvnrepository.com/artifact/com.alibaba/fastjson -->
  75. <dependency>
  76. <groupId>com.alibaba</groupId>
  77. <artifactId>fastjson</artifactId>
  78. <version>1.2.83</version>
  79. </dependency>
  80. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  81. <dependency>
  82. <groupId>org.apache.commons</groupId>
  83. <artifactId>commons-lang3</artifactId>
  84. </dependency>
  85. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-collections4 -->
  86. <dependency>
  87. <groupId>org.apache.commons</groupId>
  88. <artifactId>commons-collections4</artifactId>
  89. <version>4.2</version>
  90. </dependency>
  91. <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
  92. <dependency>
  93. <groupId>commons-io</groupId>
  94. <artifactId>commons-io</artifactId>
  95. <version>2.6</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>junit</groupId>
  99. <artifactId>junit</artifactId>
  100. <version>4.12</version>
  101. <scope>test</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.huashe.common</groupId>
  105. <artifactId>prod-commons</artifactId>
  106. <version>1.0-SNAPSHOT</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>io.springfox</groupId>
  110. <artifactId>springfox-boot-starter</artifactId>
  111. <version>3.0.0</version>
  112. </dependency>
  113. </dependencies>
  114. <build>
  115. <plugins>
  116. <plugin>
  117. <groupId>org.apache.maven.plugins</groupId>
  118. <artifactId>maven-compiler-plugin</artifactId>
  119. <version>3.8.0</version>
  120. <configuration>
  121. <source>${maven.compiler.source}</source>
  122. <target>${maven.compiler.target}</target>
  123. </configuration>
  124. </plugin>
  125. <plugin>
  126. <groupId>org.springframework.boot</groupId>
  127. <artifactId>spring-boot-maven-plugin</artifactId>
  128. <executions>
  129. <execution>
  130. <goals>
  131. <goal>repackage</goal>
  132. </goals>
  133. </execution>
  134. </executions>
  135. </plugin>
  136. <plugin>
  137. <groupId>org.apache.maven.plugins</groupId>
  138. <artifactId>maven-surefire-plugin</artifactId>
  139. <version>2.22.2</version>
  140. <configuration>
  141. <skipTests>true</skipTests>
  142. </configuration>
  143. </plugin>
  144. </plugins>
  145. </build>
  146. </project>