pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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>tofly-common</artifactId>
  7. <groupId>com.tofly</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>common-log</artifactId>
  12. <packaging>jar</packaging>
  13. <version>1.0.0</version>
  14. <groupId>com.tofly</groupId>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.tofly</groupId>
  18. <artifactId>base-api</artifactId>
  19. <version>1.0.0</version>
  20. </dependency>
  21. <!--安全依赖获取上下文信息-->
  22. <dependency>
  23. <groupId>org.springframework.security</groupId>
  24. <artifactId>spring-security-core</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.security.oauth</groupId>
  28. <artifactId>spring-security-oauth2</artifactId>
  29. </dependency>
  30. </dependencies>
  31. <distributionManagement>
  32. <repository>
  33. <id>nexus-releases</id>
  34. <name>Nexus Release Repository</name>
  35. <url>http://192.168.2.231:8081/nexus/content/repositories/thirdparty</url>
  36. </repository>
  37. </distributionManagement>
  38. </project>