pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.jiayue.ipfcst.monitor</groupId>
  7. <artifactId>ipfcst-monitor-common</artifactId>
  8. <version>1.0.0.RELEASE</version>
  9. </parent>
  10. <artifactId>ipfcst-monitor-common-log</artifactId>
  11. <packaging>jar</packaging>
  12. <dependencies>
  13. <!--工具类核心包-->
  14. <dependency>
  15. <groupId>com.jiayue.ipfcst.monitor</groupId>
  16. <artifactId>ipfcst-monitor-common-core</artifactId>
  17. <version>1.0.0.RELEASE</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.jiayue.ipfcst.monitor</groupId>
  21. <artifactId>ipfcst-monitor-api</artifactId>
  22. <version>1.0.0.RELEASE</version>
  23. </dependency>
  24. <!--安全依赖获取上下文信息-->
  25. <dependency>
  26. <groupId>org.springframework.security</groupId>
  27. <artifactId>spring-security-core</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.springframework.security.oauth</groupId>
  31. <artifactId>spring-security-oauth2</artifactId>
  32. </dependency>
  33. </dependencies>
  34. </project>