pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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>demo</artifactId>
  7. <groupId>com.jiayue</groupId>
  8. <version>3.1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>demo-biz</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <!--必备: 依赖api模块-->
  18. <dependency>
  19. <groupId>com.jiayue</groupId>
  20. <artifactId>demo-api</artifactId>
  21. <version>3.1.0</version>
  22. </dependency>
  23. <!--必备:安全模块-->
  24. <dependency>
  25. <groupId>com.jiayue</groupId>
  26. <artifactId>csc-common-security</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-security</artifactId>
  31. </dependency>
  32. <!--必备:日志处理-->
  33. <dependency>
  34. <groupId>com.jiayue</groupId>
  35. <artifactId>csc-common-log</artifactId>
  36. </dependency>
  37. <!--必备:swagger-->
  38. <dependency>
  39. <groupId>com.jiayue</groupId>
  40. <artifactId>csc-common-swagger</artifactId>
  41. </dependency>
  42. <!--必备: 注册中心客户端-->
  43. <dependency>
  44. <groupId>com.alibaba.cloud</groupId>
  45. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  46. </dependency>
  47. <!--必备: 配置中心客户端-->
  48. <dependency>
  49. <groupId>com.alibaba.cloud</groupId>
  50. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  51. </dependency>
  52. <!--必备:undertow容器-->
  53. <dependency>
  54. <groupId>org.springframework.boot</groupId>
  55. <artifactId>spring-boot-starter-undertow</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>junit</groupId>
  59. <artifactId>junit</artifactId>
  60. <scope>test</scope>
  61. </dependency>
  62. </dependencies>
  63. </project>