pom.xml 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  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.ydw.yunbuyer.common</groupId>
  7. <artifactId>krock-core-common</artifactId>
  8. <version>0.0.1</version>
  9. <packaging>jar</packaging>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  13. <java.version>1.8</java.version>
  14. <slf4j.version>1.7.21</slf4j.version>
  15. <fastjson.version>1.2.49</fastjson.version>
  16. <maven.compiler.source>${java.version}</maven.compiler.source>
  17. <maven.compiler.target>${java.version}</maven.compiler.target>
  18. </properties>
  19. <dependencies>
  20. <!-- slf4j -->
  21. <dependency>
  22. <groupId>org.slf4j</groupId>
  23. <artifactId>slf4j-api</artifactId>
  24. <version>${slf4j.version}</version>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.slf4j</groupId>
  28. <artifactId>slf4j-site</artifactId>
  29. <version>${slf4j.version}</version>
  30. </dependency>
  31. <!-- 集成commons工具类 -->
  32. <dependency>
  33. <groupId>org.apache.commons</groupId>
  34. <artifactId>commons-lang3</artifactId>
  35. <version>3.8</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>commons-io</groupId>
  39. <artifactId>commons-io</artifactId>
  40. <version>2.6</version>
  41. </dependency>
  42. <!-- 集成 阿里巴巴Json -->
  43. <dependency>
  44. <groupId>com.alibaba</groupId>
  45. <artifactId>fastjson</artifactId>
  46. <version>1.2.47</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.projectlombok</groupId>
  50. <artifactId>lombok</artifactId>
  51. <optional>true</optional>
  52. <version>1.18.6</version>
  53. </dependency>
  54. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  55. <dependency>
  56. <groupId>org.apache.httpcomponents</groupId>
  57. <artifactId>httpclient</artifactId>
  58. <version>4.5.6</version>
  59. </dependency>
  60. <!-- 阿里云 -->
  61. <dependency>
  62. <groupId>com.aliyun</groupId>
  63. <artifactId>aliyun-java-sdk-core</artifactId>
  64. <version>3.2.9</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.aliyun</groupId>
  68. <artifactId>aliyun-java-sdk-dm</artifactId>
  69. <version>2.0.0-rc2</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.aliyun</groupId>
  73. <artifactId>aliyun-java-sdk-live</artifactId>
  74. <version>2.7.0</version>
  75. </dependency>
  76. <!-- https://mvnrepository.com/artifact/junit/junit -->
  77. <dependency>
  78. <groupId>junit</groupId>
  79. <artifactId>junit</artifactId>
  80. <version>4.12</version>
  81. <scope>test</scope>
  82. </dependency>
  83. <!-- Spring MVC -->
  84. <dependency>
  85. <groupId>org.springframework</groupId>
  86. <artifactId>spring-web</artifactId>
  87. <version>5.0.7.RELEASE</version>
  88. <scope>provided</scope>
  89. </dependency>
  90. <!-- swagger2 -->
  91. <dependency>
  92. <groupId>io.springfox</groupId>
  93. <artifactId>springfox-swagger2</artifactId>
  94. <version>2.9.2</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>io.springfox</groupId>
  98. <artifactId>springfox-swagger-ui</artifactId>
  99. <version>2.9.2</version>
  100. </dependency>
  101. <!--knife4j-->
  102. <dependency>
  103. <groupId>com.github.xiaoymin</groupId>
  104. <artifactId>knife4j-spring-boot-starter</artifactId>
  105. <version>2.0.7</version>
  106. </dependency>
  107. </dependencies>
  108. <build>
  109. <plugins>
  110. <plugin>
  111. <groupId>org.springframework.boot</groupId>
  112. <artifactId>spring-boot-maven-plugin</artifactId>
  113. <version>2.0.1.RELEASE</version>
  114. </plugin>
  115. <plugin>
  116. <groupId>org.apache.maven.plugins</groupId>
  117. <artifactId>maven-compiler-plugin</artifactId>
  118. <configuration>
  119. <source>${java.version}</source>
  120. <target>${java.version}</target>
  121. </configuration>
  122. </plugin>
  123. </plugins>
  124. <defaultGoal>compile</defaultGoal>
  125. </build>
  126. </project>