pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. <packaging>pom</packaging>
  7. <parent>
  8. <groupId>com.flow</groupId>
  9. <artifactId>lowflow</artifactId>
  10. <version>0.0.1-SNAPSHOT</version>
  11. </parent>
  12. <modules>
  13. <module>flow-oauth-api</module>
  14. <module>flow-oauth-biz</module>
  15. <module>flow-oauth-entity</module>
  16. <module>flow-oauth-controller</module>
  17. </modules>
  18. <artifactId>flow-oauth</artifactId>
  19. <name>oauth 认证模块</name>
  20. <description>认证依赖设置处理</description>
  21. <properties>
  22. <maven.compiler.source>8</maven.compiler.source>
  23. <maven.compiler.target>8</maven.compiler.target>
  24. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  25. </properties>
  26. <dependencies>
  27. <dependency>
  28. <groupId>com.flow</groupId>
  29. <artifactId>flow-system-entity</artifactId>
  30. <version>0.0.1-SNAPSHOT</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.flow</groupId>
  34. <artifactId>flow-common-redis-starter</artifactId>
  35. <version>0.0.1-SNAPSHOT</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.flow</groupId>
  39. <artifactId>flow-common-core</artifactId>
  40. <version>0.0.1-SNAPSHOT</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.flow</groupId>
  44. <artifactId>flow-common-oauth2-starter</artifactId>
  45. <version>0.0.1-SNAPSHOT</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>com.flow</groupId>
  49. <artifactId>flow-common-mybatis-starter</artifactId>
  50. <version>0.0.1-SNAPSHOT</version>
  51. </dependency>
  52. </dependencies>
  53. </project>