pom.xml 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>cn.com.qmth.examcloud.core.questions</groupId>
  6. <artifactId>examcloud-core-questions</artifactId>
  7. <version>2019-SNAPSHOT</version>
  8. <packaging>pom</packaging>
  9. <parent>
  10. <groupId>cn.com.qmth.examcloud</groupId>
  11. <artifactId>examcloud-parent</artifactId>
  12. <version>2019</version>
  13. </parent>
  14. <modules>
  15. <module>examcloud-core-questions-base</module>
  16. <module>examcloud-core-questions-dao</module>
  17. <module>examcloud-core-questions-service</module>
  18. <module>examcloud-core-questions-api-provider</module>
  19. <module>examcloud-core-questions-starter</module>
  20. </modules>
  21. <properties>
  22. <examcloud.version>2019-SNAPSHOT</examcloud.version>
  23. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  24. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  25. </properties>
  26. <dependencyManagement>
  27. <dependencies>
  28. <dependency>
  29. <groupId>com.upyun</groupId>
  30. <artifactId>java-sdk</artifactId>
  31. <version>3.16</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>mysql</groupId>
  35. <artifactId>mysql-connector-java</artifactId>
  36. <version>6.0.6</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.microsoft.sqlserver</groupId>
  40. <artifactId>mssql-jdbc</artifactId>
  41. <version>6.4.0.jre8</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.alibaba</groupId>
  45. <artifactId>druid</artifactId>
  46. <version>1.1.16</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.google.guava</groupId>
  50. <artifactId>guava</artifactId>
  51. <version>27.1-jre</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.apache.commons</groupId>
  55. <artifactId>commons-lang3</artifactId>
  56. <version>3.9</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>commons-lang</groupId>
  60. <artifactId>commons-lang</artifactId>
  61. <version>2.6</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>commons-codec</groupId>
  65. <artifactId>commons-codec</artifactId>
  66. <version>1.12</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>commons-beanutils</groupId>
  70. <artifactId>commons-beanutils</artifactId>
  71. <version>1.9.3</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>commons-io</groupId>
  75. <artifactId>commons-io</artifactId>
  76. <version>2.6</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>commons-collections</groupId>
  80. <artifactId>commons-collections</artifactId>
  81. <version>3.2.2</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>commons-fileupload</groupId>
  85. <artifactId>commons-fileupload</artifactId>
  86. <version>1.4</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.alibaba</groupId>
  90. <artifactId>fastjson</artifactId>
  91. <version>1.2.58</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.jsoup</groupId>
  95. <artifactId>jsoup</artifactId>
  96. <version>1.11.3</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>com.squareup.okhttp3</groupId>
  100. <artifactId>okhttp</artifactId>
  101. <version>3.14.1</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.google.code.findbugs</groupId>
  105. <artifactId>jsr305</artifactId>
  106. <version>3.0.2</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>io.springfox</groupId>
  110. <artifactId>springfox-swagger2</artifactId>
  111. <version>2.9.2</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.github.xiaoymin</groupId>
  115. <artifactId>swagger-bootstrap-ui</artifactId>
  116. <version>1.9.3</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>cn.afterturn</groupId>
  120. <artifactId>easypoi-base</artifactId>
  121. <version>4.0.0</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.itextpdf</groupId>
  125. <artifactId>itextpdf</artifactId>
  126. <version>5.5.13</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.javassist</groupId>
  130. <artifactId>javassist</artifactId>
  131. <version>3.23.1-GA</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.apache.commons</groupId>
  135. <artifactId>commons-compress</artifactId>
  136. <version>1.18</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.mchange</groupId>
  140. <artifactId>mchange-commons-java</artifactId>
  141. <version>0.2.15</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.freemarker</groupId>
  145. <artifactId>freemarker</artifactId>
  146. <version>2.3.28</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>net.sourceforge.jeuclid</groupId>
  150. <artifactId>jeuclid-core</artifactId>
  151. <version>3.1.9</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>com.esotericsoftware</groupId>
  155. <artifactId>reflectasm</artifactId>
  156. <version>1.11.9</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>net.sf.saxon</groupId>
  160. <artifactId>Saxon-HE</artifactId>
  161. <version>9.7.0-21</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.ansj</groupId>
  165. <artifactId>ansj_seg</artifactId>
  166. <version>5.1.6</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.docx4j</groupId>
  170. <artifactId>docx4j</artifactId>
  171. <version>3.3.7</version>
  172. </dependency>
  173. <dependency>
  174. <groupId>org.docx4j</groupId>
  175. <artifactId>docx4j-ImportXHTML</artifactId>
  176. <version>3.3.6-1</version>
  177. </dependency>
  178. </dependencies>
  179. </dependencyManagement>
  180. <build>
  181. <plugins>
  182. <plugin>
  183. <groupId>org.springframework.boot</groupId>
  184. <artifactId>spring-boot-maven-plugin</artifactId>
  185. </plugin>
  186. <plugin>
  187. <groupId>org.apache.maven.plugins</groupId>
  188. <artifactId>maven-compiler-plugin</artifactId>
  189. <configuration>
  190. <source>1.8</source>
  191. <target>1.8</target>
  192. </configuration>
  193. </plugin>
  194. <plugin>
  195. <groupId>org.apache.maven.plugins</groupId>
  196. <artifactId>maven-surefire-plugin</artifactId>
  197. <configuration>
  198. <skip>true</skip>
  199. <skipTests>true</skipTests>
  200. </configuration>
  201. </plugin>
  202. </plugins>
  203. </build>
  204. </project>