pom.xml 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?xml version="1.0"?>
  2. <project
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
  4. xmlns="http://maven.apache.org/POM/4.0.0"
  5. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  6. <modelVersion>4.0.0</modelVersion>
  7. <parent>
  8. <groupId>gihon.component</groupId>
  9. <artifactId>component-parent</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. <relativePath>../</relativePath>
  12. </parent>
  13. <artifactId>component-sso</artifactId>
  14. <name>component-sso</name>
  15. <description>单点登录模块,可以单独部署,也可以集成</description>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. </properties>
  19. <dependencies>
  20. <dependency>
  21. <groupId>gihon.component</groupId>
  22. <artifactId>component-common</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>gihon.component</groupId>
  26. <artifactId>component-websecurity</artifactId>
  27. </dependency>
  28. </dependencies>
  29. <build>
  30. <!-- <plugins>
  31. <plugin>
  32. <groupId>org.springframework.boot</groupId>
  33. <artifactId>spring-boot-maven-plugin</artifactId>
  34. </plugin>
  35. </plugins> -->
  36. </build>
  37. </project>