1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?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">
- <parent>
- <artifactId>tofly-webParent</artifactId>
- <groupId>com.tofly</groupId>
- <version>1.0.3</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>tofly-auth</artifactId>
- <packaging>jar</packaging>
- <version>1.0.0</version>
- <dependencies>
-
-
-
-
-
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-oauth</artifactId>
- <version>1.0.3</version>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-redis</artifactId>
- <version>1.0.3</version>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-entity</artifactId>
- <version>1.0.3</version>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-log</artifactId>
- <version>1.0.3</version>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>5.5.7</version>
- </dependency>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|