123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <?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>2.0-SNAPSHOT</version>
- </parent>
- <artifactId>examcloud-core-basic-service</artifactId>
- <packaging>jar</packaging>
- <dependencies>
- <dependency>
- <groupId>cn.com.qmth.examcloud.core.basic</groupId>
- <artifactId>examcloud-core-basic-dao</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>
|