|
@@ -1,208 +1,214 @@
|
|
-<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">
|
|
|
|
- <parent>
|
|
|
|
- <artifactId>comm-ques-bank</artifactId>
|
|
|
|
- <groupId>com.qmth.cqb</groupId>
|
|
|
|
- <version>0.1.0</version>
|
|
|
|
- </parent>
|
|
|
|
- <modelVersion>4.0.0</modelVersion>
|
|
|
|
-
|
|
|
|
- <artifactId>cqb-comm-utils</artifactId>
|
|
|
|
- <packaging>jar</packaging>
|
|
|
|
-
|
|
|
|
- <name>cqb-comm-utils</name>
|
|
|
|
-
|
|
|
|
- <properties>
|
|
|
|
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
- </properties>
|
|
|
|
-
|
|
|
|
- <dependencies>
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>cn.com.qmth.examcloud.common</groupId>
|
|
|
|
- <artifactId>common-dto</artifactId>
|
|
|
|
- <version>${project.version}</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.google.code.gson</groupId>
|
|
|
|
- <artifactId>gson</artifactId>
|
|
|
|
- <version>2.7</version>
|
|
|
|
- </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-mongodb</artifactId>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.mongodb</groupId>
|
|
|
|
- <artifactId>mongo-java-driver</artifactId>
|
|
|
|
- <version>3.4.2</version>
|
|
|
|
- </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>junit</groupId>
|
|
|
|
- <artifactId>junit</artifactId>
|
|
|
|
- <version>4.12</version>
|
|
|
|
- <scope>test</scope>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.commons</groupId>
|
|
|
|
- <artifactId>commons-lang3</artifactId>
|
|
|
|
- <version>3.5</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>commons-io</groupId>
|
|
|
|
- <artifactId>commons-io</artifactId>
|
|
|
|
- <version>2.5</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.commons</groupId>
|
|
|
|
- <artifactId>commons-collections4</artifactId>
|
|
|
|
- <version>4.1</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.commons</groupId>
|
|
|
|
- <artifactId>commons-math3</artifactId>
|
|
|
|
- <version>3.6.1</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>commons-codec</groupId>
|
|
|
|
- <artifactId>commons-codec</artifactId>
|
|
|
|
- <version>1.10</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.commons</groupId>
|
|
|
|
- <artifactId>commons-text</artifactId>
|
|
|
|
- <version>1.0</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.docx4j</groupId>
|
|
|
|
- <artifactId>docx4j</artifactId>
|
|
|
|
- <version>3.3.3</version>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
|
- <artifactId>slf4j-api</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
|
- <artifactId>slf4j-log4j12</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.docx4j</groupId>
|
|
|
|
- <artifactId>docx4j-ImportXHTML</artifactId>
|
|
|
|
- <version>3.3.1</version>
|
|
|
|
- <exclusions>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
|
- <artifactId>slf4j-api</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- <exclusion>
|
|
|
|
- <groupId>org.slf4j</groupId>
|
|
|
|
- <artifactId>slf4j-log4j12</artifactId>
|
|
|
|
- </exclusion>
|
|
|
|
- </exclusions>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.poi</groupId>
|
|
|
|
- <artifactId>poi</artifactId>
|
|
|
|
- <version>3.15</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.poi</groupId>
|
|
|
|
- <artifactId>poi-ooxml</artifactId>
|
|
|
|
- <version>3.15</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.poi</groupId>
|
|
|
|
- <artifactId>poi-scratchpad</artifactId>
|
|
|
|
- <version>3.15</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.apache.poi</groupId>
|
|
|
|
- <artifactId>poi-ooxml-schemas</artifactId>
|
|
|
|
- <version>3.15</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>net.sf.saxon</groupId>
|
|
|
|
- <artifactId>Saxon-HE</artifactId>
|
|
|
|
- <version>9.7.0-15</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.jsoup</groupId>
|
|
|
|
- <artifactId>jsoup</artifactId>
|
|
|
|
- <version>1.10.2</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>net.sourceforge.jeuclid</groupId>
|
|
|
|
- <artifactId>jeuclid-core</artifactId>
|
|
|
|
- <version>3.1.9</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.freemarker</groupId>
|
|
|
|
- <artifactId>freemarker</artifactId>
|
|
|
|
- <version>2.3.25-incubating</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>dom4j</groupId>
|
|
|
|
- <artifactId>dom4j</artifactId>
|
|
|
|
- <version>1.6.1</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>com.esotericsoftware</groupId>
|
|
|
|
- <artifactId>reflectasm</artifactId>
|
|
|
|
- <version>1.11.3</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>commons-fileupload</groupId>
|
|
|
|
- <artifactId>commons-fileupload</artifactId>
|
|
|
|
- <version>1.3.2</version>
|
|
|
|
- </dependency>
|
|
|
|
-
|
|
|
|
- <dependency>
|
|
|
|
- <groupId>org.ansj</groupId>
|
|
|
|
- <artifactId>ansj_seg</artifactId>
|
|
|
|
- <version>5.1.1</version>
|
|
|
|
- </dependency>
|
|
|
|
- </dependencies>
|
|
|
|
-</project>
|
|
|
|
|
|
+<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">
|
|
|
|
+ <parent>
|
|
|
|
+ <artifactId>comm-ques-bank</artifactId>
|
|
|
|
+ <groupId>com.qmth.cqb</groupId>
|
|
|
|
+ <version>0.1.0</version>
|
|
|
|
+ </parent>
|
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
|
+
|
|
|
|
+ <artifactId>cqb-comm-utils</artifactId>
|
|
|
|
+ <packaging>jar</packaging>
|
|
|
|
+
|
|
|
|
+ <name>cqb-comm-utils</name>
|
|
|
|
+
|
|
|
|
+ <properties>
|
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
+ </properties>
|
|
|
|
+
|
|
|
|
+ <dependencies>
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>cn.com.qmth.examcloud.common</groupId>
|
|
|
|
+ <artifactId>common-dto</artifactId>
|
|
|
|
+ <version>${project.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>cn.com.qmth.examcloud.common</groupId>
|
|
|
|
+ <artifactId>common-uac</artifactId>
|
|
|
|
+ <version>${project.version}</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.google.code.gson</groupId>
|
|
|
|
+ <artifactId>gson</artifactId>
|
|
|
|
+ <version>2.7</version>
|
|
|
|
+ </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-mongodb</artifactId>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.mongodb</groupId>
|
|
|
|
+ <artifactId>mongo-java-driver</artifactId>
|
|
|
|
+ <version>3.4.2</version>
|
|
|
|
+ </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>junit</groupId>
|
|
|
|
+ <artifactId>junit</artifactId>
|
|
|
|
+ <version>4.12</version>
|
|
|
|
+ <scope>test</scope>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
|
+ <version>3.5</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
|
+ <version>2.5</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
+ <artifactId>commons-collections4</artifactId>
|
|
|
|
+ <version>4.1</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
+ <artifactId>commons-math3</artifactId>
|
|
|
|
+ <version>3.6.1</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>commons-codec</groupId>
|
|
|
|
+ <artifactId>commons-codec</artifactId>
|
|
|
|
+ <version>1.10</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
|
+ <artifactId>commons-text</artifactId>
|
|
|
|
+ <version>1.0</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.docx4j</groupId>
|
|
|
|
+ <artifactId>docx4j</artifactId>
|
|
|
|
+ <version>3.3.3</version>
|
|
|
|
+ <exclusions>
|
|
|
|
+ <exclusion>
|
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
|
+ </exclusion>
|
|
|
|
+ <exclusion>
|
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
|
+ <artifactId>slf4j-log4j12</artifactId>
|
|
|
|
+ </exclusion>
|
|
|
|
+ </exclusions>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.docx4j</groupId>
|
|
|
|
+ <artifactId>docx4j-ImportXHTML</artifactId>
|
|
|
|
+ <version>3.3.1</version>
|
|
|
|
+ <exclusions>
|
|
|
|
+ <exclusion>
|
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
|
+ <artifactId>slf4j-api</artifactId>
|
|
|
|
+ </exclusion>
|
|
|
|
+ <exclusion>
|
|
|
|
+ <groupId>org.slf4j</groupId>
|
|
|
|
+ <artifactId>slf4j-log4j12</artifactId>
|
|
|
|
+ </exclusion>
|
|
|
|
+ </exclusions>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
|
+ <artifactId>poi</artifactId>
|
|
|
|
+ <version>3.15</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
|
+ <artifactId>poi-ooxml</artifactId>
|
|
|
|
+ <version>3.15</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
|
+ <artifactId>poi-scratchpad</artifactId>
|
|
|
|
+ <version>3.15</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.apache.poi</groupId>
|
|
|
|
+ <artifactId>poi-ooxml-schemas</artifactId>
|
|
|
|
+ <version>3.15</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>net.sf.saxon</groupId>
|
|
|
|
+ <artifactId>Saxon-HE</artifactId>
|
|
|
|
+ <version>9.7.0-15</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.jsoup</groupId>
|
|
|
|
+ <artifactId>jsoup</artifactId>
|
|
|
|
+ <version>1.10.2</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>net.sourceforge.jeuclid</groupId>
|
|
|
|
+ <artifactId>jeuclid-core</artifactId>
|
|
|
|
+ <version>3.1.9</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.freemarker</groupId>
|
|
|
|
+ <artifactId>freemarker</artifactId>
|
|
|
|
+ <version>2.3.25-incubating</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>dom4j</groupId>
|
|
|
|
+ <artifactId>dom4j</artifactId>
|
|
|
|
+ <version>1.6.1</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>com.esotericsoftware</groupId>
|
|
|
|
+ <artifactId>reflectasm</artifactId>
|
|
|
|
+ <version>1.11.3</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>commons-fileupload</groupId>
|
|
|
|
+ <artifactId>commons-fileupload</artifactId>
|
|
|
|
+ <version>1.3.2</version>
|
|
|
|
+ </dependency>
|
|
|
|
+
|
|
|
|
+ <dependency>
|
|
|
|
+ <groupId>org.ansj</groupId>
|
|
|
|
+ <artifactId>ansj_seg</artifactId>
|
|
|
|
+ <version>5.1.1</version>
|
|
|
|
+ </dependency>
|
|
|
|
+ </dependencies>
|
|
|
|
+</project>
|