pom.xml 857 B

12345678910111213141516171819202122
  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. <modelVersion>4.0.0</modelVersion>
  6. <!-- 由于方便大家拷贝,使用不使用 feifan 作为 Maven parent -->
  7. <groupId>cn.newfeifan.zx</groupId>
  8. <artifactId>feifan-example</artifactId>
  9. <version>1.0.0-snapshot</version>
  10. <packaging>pom</packaging>
  11. <modules>
  12. <module>feifan-sso-demo-by-code</module>
  13. <module>feifan-sso-demo-by-password</module>
  14. </modules>
  15. <name>${project.artifactId}</name>
  16. <description>提供各种示例,例如说:SSO 单点登录</description>
  17. <url>https://github.com/YunaiV/ruoyi-vue-pro</url>
  18. </project>