pom.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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>platform</artifactId>
  7. <groupId>com.zcxk</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>user_auth</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.aliyun</groupId>
  15. <artifactId>aliyun-java-sdk-core</artifactId>
  16. <version>4.1.0</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.zcxk</groupId>
  20. <artifactId>common</artifactId>
  21. <version>1.0-SNAPSHOT</version>
  22. <exclusions>
  23. <exclusion>
  24. <groupId>org.springframework.security.oauth.boot</groupId>
  25. <artifactId>spring-security-oauth2-autoconfigure</artifactId>
  26. </exclusion>
  27. </exclusions>
  28. </dependency>
  29. </dependencies>
  30. <properties>
  31. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  32. <maven.build.timestamp.format>yyyy-MM-dd_HH_mm</maven.build.timestamp.format>
  33. </properties>
  34. <build>
  35. <finalName>${project.artifactId}-${maven.build.timestamp}</finalName>
  36. </build>
  37. </project>