123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <?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>
- <modules>
- <module>toktok-core</module>
- <module>toktok-app</module>
- <module>toktok-admin</module>
- <module>toktok-task</module>
- </modules>
- <parent>
- <groupId>com.sp.toktok-parent</groupId>
- <artifactId>sp-parent</artifactId>
- <version>1.0-SNAPSHOT</version>
- <relativePath>../sp-parent/pom.xml</relativePath>
- </parent>
- <groupId>com.sp.toktok</groupId>
- <artifactId>toktok-parent</artifactId>
- <version>1.0</version>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- </properties>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.jthinking.common</groupId>
- <artifactId>ip-info</artifactId>
- <version>2.1.7</version>
- </dependency>
- <dependency>
- <groupId>com.sp.toktok</groupId>
- <artifactId>toktok-core</artifactId>
- <version>1.0</version>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger2</artifactId>
- <version>2.9.2</version>
- </dependency>
- <dependency>
- <groupId>com.github.xiaoymin</groupId>
- <artifactId>swagger-bootstrap-ui</artifactId>
- <version>1.9.6</version>
- </dependency>
- <dependency>
- <groupId>commons-fileupload</groupId>
- <artifactId>commons-fileupload</artifactId>
- <version>1.3.3</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|