pom.xml 952 B

1234567891011121314151617181920212223242526272829
  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>taotao-parent</artifactId>
  7. <groupId>com.itheima</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. <relativePath>../taotao-parent/pom.xml</relativePath>
  10. </parent>
  11. <modelVersion>4.0.0</modelVersion>
  12. <artifactId>taotao-sso-web</artifactId>
  13. <properties>
  14. <maven.compiler.source>8</maven.compiler.source>
  15. <maven.compiler.target>8</maven.compiler.target>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.itheima</groupId>
  20. <artifactId>taotao-sso-interface2</artifactId>
  21. <version>1.0-SNAPSHOT</version>
  22. </dependency>
  23. </dependencies>
  24. </project>