pom.xml 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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>tcl_web_api</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. <!--gson-->
  34. <dependency>
  35. <groupId>com.google.code.gson</groupId>
  36. <artifactId>gson</artifactId>
  37. <version>2.8.6</version>
  38. </dependency>
  39. <!--oss-->
  40. <dependency>
  41. <groupId>com.aliyun.oss</groupId>
  42. <artifactId>aliyun-sdk-oss</artifactId>
  43. <version>3.10.2</version>
  44. </dependency>
  45. <!--七牛云-->
  46. <dependency>
  47. <groupId>com.qiniu</groupId>
  48. <artifactId>qiniu-java-sdk</artifactId>
  49. <version>[7.4.0, 7.4.99]</version>
  50. </dependency>
  51. <!--aliyun 短信sdk-->
  52. <dependency>
  53. <groupId>com.aliyun</groupId>
  54. <artifactId>aliyun-java-sdk-core</artifactId>
  55. <version>4.5.3</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.aliyun</groupId>
  59. <artifactId>dysmsapi20170525</artifactId>
  60. <version>2.0.1</version>
  61. </dependency>
  62. <!--时间神器-->
  63. <dependency>
  64. <groupId>joda-time</groupId>
  65. <artifactId>joda-time</artifactId>
  66. <version>2.10</version>
  67. </dependency>
  68. <!--token-->
  69. <dependency>
  70. <groupId>io.jsonwebtoken</groupId>
  71. <artifactId>jjwt</artifactId>
  72. <version>0.9.1</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.auth0</groupId>
  76. <artifactId>java-jwt</artifactId>
  77. <version>3.4.0</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.projectlombok</groupId>
  81. <artifactId>lombok</artifactId>
  82. <version>1.18.16</version>
  83. <scope>compile</scope>
  84. </dependency>
  85. </dependencies>
  86. </project>