pom.xml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. <parent>
  6. <artifactId>sc-common</artifactId>
  7. <groupId>com.nantian.cloud</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>sc-common-core</artifactId>
  12. <packaging>jar</packaging>
  13. <description>sc 公共工具类核心包</description>
  14. <dependencies>
  15. <!--hutool-->
  16. <dependency>
  17. <groupId>cn.hutool</groupId>
  18. <artifactId>hutool-all</artifactId>
  19. <version>${hutool.version}</version>
  20. </dependency>
  21. <!--server-api-->
  22. <dependency>
  23. <groupId>javax.servlet</groupId>
  24. <artifactId>javax.servlet-api</artifactId>
  25. </dependency>
  26. <!--feign 依赖-->
  27. <dependency>
  28. <groupId>io.github.openfeign</groupId>
  29. <artifactId>feign-okhttp</artifactId>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.cloud</groupId>
  33. <artifactId>spring-cloud-starter-openfeign</artifactId>
  34. </dependency>
  35. <!--hibernate-validator-->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-validation</artifactId>
  39. </dependency>
  40. <!--json模块-->
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-json</artifactId>
  44. </dependency>
  45. <!--TTL-->
  46. <dependency>
  47. <groupId>com.alibaba</groupId>
  48. <artifactId>transmittable-thread-local</artifactId>
  49. <version>${ttl.version}</version>
  50. </dependency>
  51. <!--swagger 依赖-->
  52. <dependency>
  53. <groupId>io.swagger</groupId>
  54. <artifactId>swagger-annotations</artifactId>
  55. </dependency>
  56. </dependencies>
  57. </project>