pom.xml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  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-log</artifactId>
  12. <packaging>jar</packaging>
  13. <description>sc 日志服务</description>
  14. <dependencies>
  15. <!--工具类核心包-->
  16. <dependency>
  17. <groupId>com.nantian.cloud</groupId>
  18. <artifactId>sc-common-core</artifactId>
  19. </dependency>
  20. <!--UPMS接口模块-->
  21. <dependency>
  22. <groupId>com.nantian.cloud</groupId>
  23. <artifactId>sc-upms-api</artifactId>
  24. </dependency>
  25. <!--安全依赖获取上下文信息-->
  26. <dependency>
  27. <groupId>org.springframework.security</groupId>
  28. <artifactId>spring-security-core</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.security.oauth</groupId>
  32. <artifactId>spring-security-oauth2</artifactId>
  33. </dependency>
  34. </dependencies>
  35. </project>