12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <packaging>pom</packaging>
- <parent>
- <groupId>com.flow</groupId>
- <artifactId>lowflow</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </parent>
- <modules>
- <module>flow-oauth-api</module>
- <module>flow-oauth-biz</module>
- <module>flow-oauth-entity</module>
- <module>flow-oauth-controller</module>
- </modules>
- <artifactId>flow-oauth</artifactId>
- <name>oauth 认证模块</name>
- <description>认证依赖设置处理</description>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>com.flow</groupId>
- <artifactId>flow-system-entity</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.flow</groupId>
- <artifactId>flow-common-redis-starter</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.flow</groupId>
- <artifactId>flow-common-core</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.flow</groupId>
- <artifactId>flow-common-oauth2-starter</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- <dependency>
- <groupId>com.flow</groupId>
- <artifactId>flow-common-mybatis-starter</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- </dependency>
- </dependencies>
- </project>
|