1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- <?xml version="1.0"?>
- <project
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
- xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>cn.com.qmth.examcloud.core.basic</groupId>
- <artifactId>examcloud-core-basic</artifactId>
- <version>0.1.0</version>
- </parent>
- <artifactId>examcloud-core-basic-export</artifactId>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>cn.com.qmth.examcloud.core.basic</groupId>
- <artifactId>examcloud-core-basic-domain</artifactId>
- <version>${examcloud.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.com.qmth.examcloud.core.basic</groupId>
- <artifactId>examcloud-core-basic-service</artifactId>
- <version>${examcloud.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.com.qmth.examcloud.commons</groupId>
- <artifactId>examcloud-commons-util</artifactId>
- <version>${examcloud.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.com.qmth.examcloud.commons</groupId>
- <artifactId>examcloud-commons-dto</artifactId>
- <version>${examcloud.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.com.qmth.examcloud.commons</groupId>
- <artifactId>examcloud-commons-uac</artifactId>
- <version>${examcloud.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.com.qmth.examcloud.commons</groupId>
- <artifactId>examcloud-commons-config</artifactId>
- <version>${examcloud.version}</version>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-feign</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-eureka</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger2</artifactId>
- <version>2.6.1</version>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger-ui</artifactId>
- <version>2.6.1</version>
- </dependency>
- <dependency>
- <groupId>commons-fileupload</groupId>
- <artifactId>commons-fileupload</artifactId>
- <version>1.3.2</version>
- </dependency>
- <dependency>
- <groupId>com.qmth.commons</groupId>
- <artifactId>data-sync-rabbit</artifactId>
- <version>1.0-SNAPSHOT</version>
- </dependency>
- </dependencies>
- </project>
|