pom.xml 3.8 KB

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