pom.xml 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. <parent>
  6. <groupId>com.cretin</groupId>
  7. <artifactId>webroot</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <relativePath>../pom.xml</relativePath>
  10. </parent>
  11. <artifactId>web-core</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>com.cretin</groupId>
  19. <artifactId>web-redis</artifactId>
  20. <version>0.0.1-SNAPSHOT</version>
  21. </dependency>
  22. <!--接口文档-->
  23. <dependency>
  24. <groupId>io.springfox</groupId>
  25. <artifactId>springfox-swagger2</artifactId>
  26. <version>2.9.2</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>io.springfox</groupId>
  30. <artifactId>springfox-swagger-ui</artifactId>
  31. <version>2.9.2</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.alibaba</groupId>
  35. <artifactId>easyexcel</artifactId>
  36. <version>3.3.3</version>
  37. </dependency>
  38. <!--gson-->
  39. <dependency>
  40. <groupId>com.google.code.gson</groupId>
  41. <artifactId>gson</artifactId>
  42. <version>2.8.6</version>
  43. </dependency>
  44. <!--oss-->
  45. <dependency>
  46. <groupId>com.aliyun.oss</groupId>
  47. <artifactId>aliyun-sdk-oss</artifactId>
  48. <version>3.10.2</version>
  49. </dependency>
  50. <!--七牛云-->
  51. <dependency>
  52. <groupId>com.qiniu</groupId>
  53. <artifactId>qiniu-java-sdk</artifactId>
  54. <version>[7.4.0, 7.4.99]</version>
  55. </dependency>
  56. <!--aliyun 短信sdk-->
  57. <dependency>
  58. <groupId>com.aliyun</groupId>
  59. <artifactId>aliyun-java-sdk-core</artifactId>
  60. <version>4.5.3</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.aliyun</groupId>
  64. <artifactId>dysmsapi20170525</artifactId>
  65. <version>2.0.1</version>
  66. </dependency>
  67. <!--时间神器-->
  68. <dependency>
  69. <groupId>joda-time</groupId>
  70. <artifactId>joda-time</artifactId>
  71. <version>2.10</version>
  72. </dependency>
  73. <!--token-->
  74. <dependency>
  75. <groupId>io.jsonwebtoken</groupId>
  76. <artifactId>jjwt</artifactId>
  77. <version>0.9.1</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.auth0</groupId>
  81. <artifactId>java-jwt</artifactId>
  82. <version>3.4.0</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>org.projectlombok</groupId>
  86. <artifactId>lombok</artifactId>
  87. <version>1.18.16</version>
  88. <scope>compile</scope>
  89. </dependency>
  90. </dependencies>
  91. </project>