123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?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.0</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-core</artifactId>-->
- <!--<version>1.0.0</version>-->
- <!--</dependency>-->
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>base-api</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-oauth</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-redis</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-entity</artifactId>
- <version>1.0.0</version>
- </dependency>
- <dependency>
- <groupId>com.tofly</groupId>
- <artifactId>common-log</artifactId>
- <version>1.0.0</version>
- </dependency>
- </dependencies>
- <build>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins>
- </build>
- </project>
|