pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321
  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>smart.quiz</groupId>
  6. <artifactId>SZU-quiz</artifactId>
  7. <version>2019.x.x</version> <!-- Do NOT modify this line, as will hinder detection when building -->
  8. <packaging>jar</packaging>
  9. <name>SmartNurseryQuiz</name>
  10. <description>WebServer of Smart Quiz Service</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.0.2.RELEASE</version>
  15. <relativePath/> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. <weixin-java-mp.version>3.2.0</weixin-java-mp.version>
  22. <fastjson.version>1.2.31</fastjson.version>
  23. <jaeger.version>0.32.0</jaeger.version>
  24. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>io.netty</groupId>
  28. <artifactId>netty-all</artifactId>
  29. <version>4.1.25.Final</version>
  30. </dependency>
  31. <dependency>
  32. <groupId>io.jaegertracing</groupId>
  33. <artifactId>jaeger-client</artifactId>
  34. <version>${jaeger.version}</version>
  35. </dependency>
  36. <dependency>
  37. <groupId>io.opentracing.contrib</groupId>
  38. <artifactId>opentracing-spring-jaeger-web-starter</artifactId>
  39. <version>LATEST</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>com.github.binarywang</groupId>
  43. <artifactId>weixin-java-mp</artifactId>
  44. <version>3.3.0</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.github.binarywang</groupId>
  48. <artifactId>weixin-java-miniapp</artifactId>
  49. <version>3.3.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.alibaba</groupId>
  53. <artifactId>fastjson</artifactId>
  54. <version>${fastjson.version}</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-starter-actuator</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.boot</groupId>
  62. <artifactId>spring-boot-starter-aop</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.springframework.boot</groupId>
  66. <artifactId>spring-boot-starter-cache</artifactId>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.springframework.boot</groupId>
  70. <artifactId>spring-boot-starter-integration</artifactId>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.springframework.boot</groupId>
  74. <artifactId>spring-boot-starter-mail</artifactId>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.springframework.boot</groupId>
  78. <artifactId>spring-boot-starter-freemarker</artifactId>
  79. </dependency>
  80. <dependency>
  81. <groupId>mysql</groupId>
  82. <artifactId>mysql-connector-java</artifactId>
  83. <scope>runtime</scope>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.mybatis.spring.boot</groupId>
  87. <artifactId>mybatis-spring-boot-starter</artifactId>
  88. <version>1.3.2</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>org.mybatis</groupId>
  92. <artifactId>mybatis</artifactId>
  93. <version>3.4.6</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.alibaba</groupId>
  97. <artifactId>druid</artifactId>
  98. <version>1.1.10</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.boot</groupId>
  102. <artifactId>spring-boot-starter-web</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework.boot</groupId>
  106. <artifactId>spring-boot-devtools</artifactId>
  107. <scope>runtime</scope>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-starter-test</artifactId>
  112. <scope>test</scope>
  113. </dependency>
  114. <dependency>
  115. <groupId>io.jsonwebtoken</groupId>
  116. <artifactId>jjwt</artifactId>
  117. <version>0.9.0</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.apache.commons</groupId>
  121. <artifactId>commons-lang3</artifactId>
  122. <version>3.6</version>
  123. </dependency>
  124. <dependency>
  125. <groupId>org.apache.shiro</groupId>
  126. <artifactId>shiro-core</artifactId>
  127. <version>1.4.0</version>
  128. </dependency>
  129. <!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
  130. <dependency>
  131. <groupId>org.apache.poi</groupId>
  132. <artifactId>poi-ooxml</artifactId>
  133. <version>3.17</version>
  134. </dependency>
  135. <!-- https://mvnrepository.com/artifact/xerces/xerces -->
  136. <dependency>
  137. <groupId>xerces</groupId>
  138. <artifactId>xercesImpl</artifactId>
  139. <version>2.11.0</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>com.vaadin.external.google</groupId>
  143. <artifactId>android-json</artifactId>
  144. <version>RELEASE</version>
  145. </dependency>
  146. <!-- https://mvnrepository.com/artifact/org.apache.pdfbox/pdfbox -->
  147. <dependency>
  148. <groupId>org.apache.pdfbox</groupId>
  149. <artifactId>pdfbox</artifactId>
  150. <version>2.0.9</version>
  151. </dependency>
  152. <!-- https://mvnrepository.com/artifact/org.apache.pdfbox/fontbox -->
  153. <dependency>
  154. <groupId>org.apache.pdfbox</groupId>
  155. <artifactId>fontbox</artifactId>
  156. <version>2.0.9</version>
  157. </dependency>
  158. <!-- https://mvnrepository.com/artifact/org.apache.pdfbox/pdfbox-tools -->
  159. <dependency>
  160. <groupId>org.apache.pdfbox</groupId>
  161. <artifactId>pdfbox-tools</artifactId>
  162. <version>2.0.8</version>
  163. </dependency>
  164. <!-- https://mvnrepository.com/artifact/com.github.penggle/kaptcha -->
  165. <dependency>
  166. <groupId>com.github.penggle</groupId>
  167. <artifactId>kaptcha</artifactId>
  168. <version>2.3.2</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.springframework.boot</groupId>
  172. <artifactId>spring-boot-starter-web-services</artifactId>
  173. <version>2.0.1.RELEASE</version>
  174. </dependency>
  175. <!-- https://mvnrepository.com/artifact/wsdl4j/wsdl4j -->
  176. <dependency>
  177. <groupId>wsdl4j</groupId>
  178. <artifactId>wsdl4j</artifactId>
  179. </dependency>
  180. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  181. <dependency>
  182. <groupId>org.apache.httpcomponents</groupId>
  183. <artifactId>httpclient</artifactId>
  184. <version>4.5.5</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.springframework</groupId>
  188. <artifactId>spring-test</artifactId>
  189. <version>5.0.6.RELEASE</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.springframework</groupId>
  193. <artifactId>spring-test</artifactId>
  194. <version>5.0.6.RELEASE</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.mockito</groupId>
  198. <artifactId>mockito-core</artifactId>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.assertj</groupId>
  202. <artifactId>assertj-core</artifactId>
  203. </dependency>
  204. <!-- log -->
  205. <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
  206. <dependency>
  207. <groupId>org.slf4j</groupId>
  208. <artifactId>slf4j-api</artifactId>
  209. <version>1.7.25</version>
  210. </dependency>
  211. <dependency>
  212. <groupId>org.projectlombok</groupId>
  213. <artifactId>lombok</artifactId>
  214. <version>1.16.22</version>
  215. </dependency>
  216. <!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-log4j12 -->
  217. <dependency>
  218. <groupId>net.sourceforge.javacsv</groupId>
  219. <artifactId>javacsv</artifactId>
  220. <version>2.0</version>
  221. </dependency>
  222. </dependencies>
  223. <build>
  224. <plugins>
  225. <plugin>
  226. <groupId>org.springframework.boot</groupId>
  227. <artifactId>spring-boot-maven-plugin</artifactId>
  228. </plugin>
  229. <plugin>
  230. <groupId>org.apache.maven.plugins</groupId>
  231. <artifactId>maven-surefire-plugin</artifactId>
  232. <configuration>
  233. <skip>false</skip>
  234. </configuration>
  235. </plugin>
  236. <plugin>
  237. <groupId>org.apache.maven.plugins</groupId>
  238. <artifactId>maven-compiler-plugin</artifactId>
  239. <version>3.7.0</version>
  240. <configuration>
  241. <source>1.8</source>
  242. <target>1.8</target>
  243. </configuration>
  244. </plugin>
  245. <plugin>
  246. <groupId>org.apache.maven.plugins</groupId>
  247. <artifactId>maven-surefire-plugin</artifactId>
  248. <version>2.20.1</version>
  249. <configuration>
  250. <!--
  251. <argLine>-/-add-modules=jdk.incubator.httpclient</argLine>
  252. -->
  253. </configuration>
  254. </plugin>
  255. <!--
  256. <plugin>
  257. <groupId>org.jvnet.jaxb2.maven2</groupId>
  258. <artifactId>maven-jaxb2-plugin</artifactId>
  259. <version>0.12.3</version>
  260. <executions>
  261. <execution>
  262. <goals>
  263. <goal>generate</goal>
  264. </goals>
  265. </execution>
  266. </executions>
  267. <configuration>
  268. <schemaLanguage>WSDL</schemaLanguage>
  269. <generatePackage>com.donghaiair.afq_intf.ws</generatePackage>
  270. <generateDirectory>${basedir}/src/main/java</generateDirectory>
  271. <schemas>
  272. <schema>
  273. <fileset>
  274. <directory>${basedir}/src/main/resources/schemas</directory>
  275. <includes>
  276. <include>*.wsdl</include>
  277. </includes>
  278. </fileset>
  279. </schema>
  280. </schemas>
  281. </configuration>
  282. </plugin>
  283. -->
  284. </plugins>
  285. </build>
  286. <repositories>
  287. <repository>
  288. <id>public</id>
  289. <name>aliyun nexus</name>
  290. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  291. <releases>
  292. <enabled>true</enabled>
  293. </releases>
  294. </repository>
  295. </repositories>
  296. <pluginRepositories>
  297. <pluginRepository>
  298. <id>public</id>
  299. <name>aliyun nexus</name>
  300. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  301. <releases>
  302. <enabled>true</enabled>
  303. </releases>
  304. <snapshots>
  305. <enabled>false</enabled>
  306. </snapshots>
  307. </pluginRepository>
  308. </pluginRepositories>
  309. </project>