pom.xml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. <groupId>com.nova</groupId>
  6. <artifactId>learning-imitation-product</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>learning-imitation-product</name>
  9. <description>Demo project for Spring Boot</description>
  10. <build>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <configuration>
  16. <source>8</source>
  17. <target>8</target>
  18. </configuration>
  19. </plugin>
  20. </plugins>
  21. </build>
  22. <parent>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-web</artifactId>
  25. <version>2.1.2.RELEASE</version>
  26. <relativePath/>
  27. </parent>
  28. <repositories>
  29. <repository>
  30. <id>aliyun</id>
  31. <name>aliyun</name>
  32. <url>https://maven.aliyun.com/repository/public</url>
  33. </repository>
  34. </repositories>
  35. <dependencies>
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. <version>2.1.2.RELEASE</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>mysql</groupId>
  43. <artifactId>mysql-connector-java</artifactId>
  44. <scope>runtime</scope>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.projectlombok</groupId>
  48. <artifactId>lombok</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.alibaba</groupId>
  52. <artifactId>fastjson</artifactId>
  53. <version>1.2.31</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.baomidou</groupId>
  57. <artifactId>mybatis-plus-boot-starter</artifactId>
  58. <version>3.3.1.tmp</version>
  59. </dependency>
  60. <!-- kafka -->
  61. <dependency>
  62. <groupId>org.springframework.kafka</groupId>
  63. <artifactId>spring-kafka</artifactId>
  64. </dependency>
  65. <!-- redis -->
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-data-redis</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>redis.clients</groupId>
  72. <artifactId>jedis</artifactId>
  73. <version>2.9.0</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.commons</groupId>
  77. <artifactId>commons-lang3</artifactId>
  78. <version>${commons-lang3.version}</version>
  79. </dependency>
  80. <!--七牛云上传图片服务-->
  81. <!-- https://mvnrepository.com/artifact/com.qiniu/qiniu-java-sdk -->
  82. <dependency>
  83. <groupId>com.qiniu</groupId>
  84. <artifactId>qiniu-java-sdk</artifactId>
  85. <version>[7.13.0, 7.13.99]</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.squareup.okhttp3</groupId>
  89. <artifactId>okhttp</artifactId>
  90. <version>3.14.2</version>
  91. <scope>compile</scope>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.google.code.gson</groupId>
  95. <artifactId>gson</artifactId>
  96. <version>2.8.5</version>
  97. <scope>compile</scope>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.qiniu</groupId>
  101. <artifactId>happy-dns-java</artifactId>
  102. <version>0.1.6</version>
  103. <scope>test</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>junit</groupId>
  107. <artifactId>junit</artifactId>
  108. <version>4.12</version>
  109. <scope>test</scope>
  110. </dependency>
  111. </dependencies>
  112. </project>