1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <?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>
- <groupId>com.sp.toktokstores</groupId>
- <artifactId>stores-parent</artifactId>
- <packaging>pom</packaging>
- <version>1.0</version>
- <modules>
- <module>stores-core</module>
- <module>stores-app</module>
- <module>stores-admin</module>
- <module>stores-task</module>
- <module>stores-oa</module>
- </modules>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- </properties>
- <parent>
- <groupId>com.sp</groupId>
- <artifactId>sp-parent</artifactId>
- <version>1.0-SNAPSHOT</version>
- <relativePath>../sp-parent/pom.xml</relativePath>
- </parent>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.sp.toktokstores</groupId>
- <artifactId>stores-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>
|