|
@@ -1,122 +1,103 @@
|
|
|
<?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>
|
|
|
- <artifactId>examcloud-core-questions-base</artifactId>
|
|
|
- <packaging>jar</packaging>
|
|
|
+<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>
|
|
|
+ <parent>
|
|
|
+ <artifactId>examcloud-core-questions</artifactId>
|
|
|
+ <groupId>cn.com.qmth.examcloud.core.questions</groupId>
|
|
|
+ <version>2019-SNAPSHOT</version>
|
|
|
+ </parent>
|
|
|
+ <artifactId>examcloud-core-questions-base</artifactId>
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
|
|
- <parent>
|
|
|
- <artifactId>examcloud-core-questions</artifactId>
|
|
|
- <groupId>cn.com.qmth.examcloud.core.questions</groupId>
|
|
|
- <version>2019-SNAPSHOT</version>
|
|
|
- </parent>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-data-mongodb</artifactId>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-logging</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.com.qmth.examcloud</groupId>
|
|
|
+ <artifactId>examcloud-web</artifactId>
|
|
|
+ <version>${examcloud.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.com.qmth.examcloud</groupId>
|
|
|
+ <artifactId>examcloud-support</artifactId>
|
|
|
+ <version>${examcloud.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.com.qmth.examcloud.question</groupId>
|
|
|
+ <artifactId>examcloud-question-commons</artifactId>
|
|
|
+ <version>${examcloud.version}</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependencies>
|
|
|
- <dependency>
|
|
|
- <groupId>cn.com.qmth.examcloud</groupId>
|
|
|
- <artifactId>examcloud-web</artifactId>
|
|
|
- <version>${examcloud.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>cn.com.qmth.examcloud</groupId>
|
|
|
- <artifactId>examcloud-support</artifactId>
|
|
|
- <version>${examcloud.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>cn.com.qmth.examcloud.question</groupId>
|
|
|
- <artifactId>examcloud-question-commons</artifactId>
|
|
|
- <version>${examcloud.version}</version>
|
|
|
- </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.com.qmth.examcloud.rpc</groupId>
|
|
|
+ <artifactId>examcloud-global-api-client</artifactId>
|
|
|
+ <version>${examcloud.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.com.qmth.examcloud.rpc</groupId>
|
|
|
+ <artifactId>examcloud-core-basic-api-client</artifactId>
|
|
|
+ <version>${examcloud.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.com.qmth.examcloud.rpc</groupId>
|
|
|
+ <artifactId>examcloud-core-examwork-api-client</artifactId>
|
|
|
+ <version>${examcloud.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.com.qmth.examcloud.rpc</groupId>
|
|
|
+ <artifactId>examcloud-core-print-api-client</artifactId>
|
|
|
+ <version>${examcloud.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>cn.com.qmth.examcloud.rpc</groupId>
|
|
|
+ <artifactId>examcloud-core-questions-api-client</artifactId>
|
|
|
+ <version>${examcloud.version}</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <!-- rpc api start -->
|
|
|
- <dependency>
|
|
|
- <groupId>cn.com.qmth.examcloud.rpc</groupId>
|
|
|
- <artifactId>examcloud-global-api-client</artifactId>
|
|
|
- <version>${examcloud.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>cn.com.qmth.examcloud.rpc</groupId>
|
|
|
- <artifactId>examcloud-core-basic-api-client</artifactId>
|
|
|
- <version>${examcloud.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>cn.com.qmth.examcloud.rpc</groupId>
|
|
|
- <artifactId>examcloud-core-examwork-api-client</artifactId>
|
|
|
- <version>${examcloud.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>cn.com.qmth.examcloud.rpc</groupId>
|
|
|
- <artifactId>examcloud-core-print-api-client</artifactId>
|
|
|
- <version>${examcloud.version}</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>cn.com.qmth.examcloud.rpc</groupId>
|
|
|
- <artifactId>examcloud-core-questions-api-client</artifactId>
|
|
|
- <version>${examcloud.version}</version>
|
|
|
- </dependency>
|
|
|
- <!-- rpc api end -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.upyun</groupId>
|
|
|
+ <artifactId>java-sdk</artifactId>
|
|
|
+ <version>3.16</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.docx4j</groupId>
|
|
|
+ <artifactId>docx4j-ImportXHTML</artifactId>
|
|
|
+ <version>3.3.6-1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>net.sourceforge.jeuclid</groupId>
|
|
|
+ <artifactId>jeuclid-core</artifactId>
|
|
|
+ <version>3.1.9</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.apache.xmlgraphics</groupId>
|
|
|
+ <artifactId>xmlgraphics-commons</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>net.sf.saxon</groupId>
|
|
|
+ <artifactId>Saxon-HE</artifactId>
|
|
|
+ <version>9.7.0-15</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.ansj</groupId>
|
|
|
+ <artifactId>ansj_seg</artifactId>
|
|
|
+ <version>5.1.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.esotericsoftware</groupId>
|
|
|
+ <artifactId>reflectasm</artifactId>
|
|
|
+ <version>1.11.9</version>
|
|
|
+ </dependency>
|
|
|
|
|
|
- <dependency>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-data-mongodb</artifactId>
|
|
|
- <exclusions>
|
|
|
- <exclusion>
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
- <artifactId>spring-boot-starter-logging</artifactId>
|
|
|
- </exclusion>
|
|
|
- </exclusions>
|
|
|
- </dependency>
|
|
|
-
|
|
|
- <!-- 题库相关依赖 -->
|
|
|
- <dependency>
|
|
|
- <groupId>org.freemarker</groupId>
|
|
|
- <artifactId>freemarker</artifactId>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.upyun</groupId>
|
|
|
- <artifactId>java-sdk</artifactId>
|
|
|
- <version>3.16</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.apache.commons</groupId>
|
|
|
- <artifactId>commons-compress</artifactId>
|
|
|
- <version>1.18</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.docx4j</groupId>
|
|
|
- <artifactId>docx4j-ImportXHTML</artifactId>
|
|
|
- <version>3.3.6-1</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>net.sourceforge.jeuclid</groupId>
|
|
|
- <artifactId>jeuclid-core</artifactId>
|
|
|
- <version>3.1.9</version>
|
|
|
- <exclusions>
|
|
|
- <exclusion>
|
|
|
- <groupId>org.apache.xmlgraphics</groupId>
|
|
|
- <artifactId>xmlgraphics-commons</artifactId>
|
|
|
- </exclusion>
|
|
|
- </exclusions>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>net.sf.saxon</groupId>
|
|
|
- <artifactId>Saxon-HE</artifactId>
|
|
|
- <version>9.7.0-15</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>org.ansj</groupId>
|
|
|
- <artifactId>ansj_seg</artifactId>
|
|
|
- <version>5.1.1</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.esotericsoftware</groupId>
|
|
|
- <artifactId>reflectasm</artifactId>
|
|
|
- <version>1.11.9</version>
|
|
|
- </dependency>
|
|
|
- <dependency>
|
|
|
- <groupId>com.github.xiaoymin</groupId>
|
|
|
- <artifactId>swagger-bootstrap-ui</artifactId>
|
|
|
- <version>1.9.3</version>
|
|
|
- </dependency>
|
|
|
- </dependencies>
|
|
|
+ </dependencies>
|
|
|
</project>
|