pom.xml 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>wits</groupId>
  5. <artifactId>bw-bk</artifactId>
  6. <version>1.0.0</version>
  7. <packaging>jar</packaging>
  8. <name>webapply-bss</name>
  9. <url>http://maven.apache.org</url>
  10. <properties>
  11. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>io.vertx</groupId>
  16. <artifactId>vertx-core</artifactId>
  17. <version>3.3.2</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>io.vertx</groupId>
  21. <artifactId>vertx-web</artifactId>
  22. <version>3.3.2</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>io.vertx</groupId>
  26. <artifactId>vertx-sql-common</artifactId>
  27. <version>3.3.2</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>io.vertx</groupId>
  31. <artifactId>vertx-mysql-postgresql-client</artifactId>
  32. <version>3.3.2</version>
  33. </dependency>
  34. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  35. <dependency>
  36. <groupId>mysql</groupId>
  37. <artifactId>mysql-connector-java</artifactId>
  38. <!--
  39. <version>5.1.40</version>
  40. -->
  41. <version>8.0.33</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>io.vertx</groupId>
  45. <artifactId>vertx-jdbc-client</artifactId>
  46. <version>3.3.2</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>io.vertx</groupId>
  50. <artifactId>vertx-auth-common</artifactId>
  51. <version>3.3.2</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>io.vertx</groupId>
  55. <artifactId>vertx-auth-jdbc</artifactId>
  56. <version>3.3.2</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.logging.log4j</groupId>
  60. <artifactId>log4j-api</artifactId>
  61. <version>2.5</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.logging.log4j</groupId>
  65. <artifactId>log4j-core</artifactId>
  66. <version>2.5</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.logging.log4j</groupId>
  70. <artifactId>log4j-slf4j-impl</artifactId>
  71. <version>2.5</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>io.vertx</groupId>
  75. <artifactId>vertx-stomp</artifactId>
  76. <version>3.3.2</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>io.vertx</groupId>
  80. <artifactId>vertx-unit</artifactId>
  81. <version>3.3.2</version>
  82. <scope>test</scope>
  83. </dependency>
  84. <dependency>
  85. <groupId>junit</groupId>
  86. <artifactId>junit</artifactId>
  87. <version>4.12</version>
  88. <scope>test</scope>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.itextpdf</groupId>
  92. <artifactId>barcodes</artifactId>
  93. <version>7.0.1</version>
  94. <!-- barcodes depends on kernel -->
  95. </dependency>
  96. <dependency>
  97. <groupId>com.itextpdf</groupId>
  98. <artifactId>font-asian</artifactId>
  99. <version>7.0.1</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.itextpdf</groupId>
  103. <artifactId>forms</artifactId>
  104. <version>7.0.1</version>
  105. <!-- forms depends on kernel and layout -->
  106. </dependency>
  107. <dependency>
  108. <groupId>com.itextpdf</groupId>
  109. <artifactId>hyph</artifactId>
  110. <version>7.0.1</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.itextpdf</groupId>
  114. <artifactId>io</artifactId>
  115. <version>7.0.1</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>com.itextpdf</groupId>
  119. <artifactId>kernel</artifactId>
  120. <version>7.0.1</version>
  121. <!-- kernel depends on io -->
  122. </dependency>
  123. <dependency>
  124. <groupId>com.itextpdf</groupId>
  125. <artifactId>layout</artifactId>
  126. <version>7.0.1</version>
  127. <!-- layout depends on kernel -->
  128. </dependency>
  129. <dependency>
  130. <groupId>com.itextpdf</groupId>
  131. <artifactId>pdfa</artifactId>
  132. <version>7.0.1</version>
  133. <!-- pdfa depends on kernel -->
  134. </dependency>
  135. <dependency>
  136. <groupId>com.itextpdf</groupId>
  137. <artifactId>sign</artifactId>
  138. <version>7.0.1</version>
  139. <!-- sign depends on kernel, layout and forms -->
  140. </dependency>
  141. <!-- 图片压缩 -->
  142. <dependency>
  143. <groupId>net.coobird</groupId>
  144. <artifactId>thumbnailator</artifactId>
  145. <version>0.4.8</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>org.apache.httpcomponents</groupId>
  149. <artifactId>httpcore</artifactId>
  150. <version>4.4.6</version>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.apache.httpcomponents</groupId>
  154. <artifactId>httpclient</artifactId>
  155. <version>4.5.3</version>
  156. </dependency>
  157. <dependency>
  158. <!-- jsoup HTML parser library @ http://jsoup.org/ -->
  159. <groupId>org.jsoup</groupId>
  160. <artifactId>jsoup</artifactId>
  161. <version>1.10.2</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>javax.servlet</groupId>
  165. <artifactId>servlet-api</artifactId>
  166. <version>2.5</version>
  167. <scope>provided</scope>
  168. </dependency>
  169. <dependency>
  170. <groupId>org.apache.poi</groupId>
  171. <artifactId>poi-ooxml</artifactId>
  172. <version>3.17</version>
  173. </dependency>
  174. <dependency>
  175. <groupId>com.aliyun</groupId>
  176. <artifactId>aliyun-java-sdk-core</artifactId>
  177. <version>3.3.1</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>com.aliyun</groupId>
  181. <artifactId>aliyun-java-sdk-dysmsapi</artifactId>
  182. <version>1.0.0</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>com.aliyun</groupId>
  186. <artifactId>aliyun-java-sdk-dyvmsapi</artifactId>
  187. <version>1.0.0</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>com.aliyun.mns</groupId>
  191. <artifactId>aliyun-sdk-mns</artifactId>
  192. <version>1.1.8</version>
  193. </dependency>
  194. <dependency>
  195. <groupId>commons-beanutils</groupId>
  196. <artifactId>commons-beanutils</artifactId>
  197. <version>1.7.0</version>
  198. </dependency>
  199. <dependency>
  200. <groupId>commons-codec</groupId>
  201. <artifactId>commons-codec</artifactId>
  202. <version>1.10</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.lucee</groupId>
  206. <artifactId>commons-httpclient</artifactId>
  207. <version>3.1</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>commons-io</groupId>
  211. <artifactId>commons-io</artifactId>
  212. <version>2.5</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>commons-logging</groupId>
  216. <artifactId>commons-logging</artifactId>
  217. <version>1.2</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>com.hmsoft</groupId>
  221. <artifactId>com.hmsoft.sms</artifactId>
  222. <version>1.0</version>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.apache.httpcomponents</groupId>
  226. <artifactId>httpasyncclient</artifactId>
  227. <version>4.1</version>
  228. </dependency>
  229. <dependency>
  230. <groupId>org.apache.httpcomponents</groupId>
  231. <artifactId>httpclient</artifactId>
  232. <version>4.4.1</version>
  233. </dependency>
  234. <dependency>
  235. <groupId>org.apache.httpcomponents</groupId>
  236. <artifactId>httpcore</artifactId>
  237. <version>4.4.1</version>
  238. </dependency>
  239. <dependency>
  240. <groupId>org.apache.httpcomponents</groupId>
  241. <artifactId>httpcore-nio</artifactId>
  242. <version>4.4.1</version>
  243. </dependency>
  244. </dependencies>
  245. <distributionManagement>
  246. <repository>
  247. <id>itext</id>
  248. <name>iText Repository - releases</name>
  249. <url>https://repo.itextsupport.com/releases</url>
  250. </repository>
  251. </distributionManagement>
  252. <build>
  253. <plugins>
  254. <plugin>
  255. <artifactId>maven-compiler-plugin</artifactId>
  256. <version>3.3</version>
  257. <configuration><!-- use java 8 -->
  258. <source>1.8</source>
  259. <target>1.8</target>
  260. <encoding>UTF-8</encoding>
  261. </configuration>
  262. </plugin>
  263. <plugin>
  264. <groupId>org.apache.maven.plugins</groupId>
  265. <artifactId>maven-shade-plugin</artifactId>
  266. <version>2.3</version>
  267. <executions>
  268. <execution>
  269. <phase>package</phase>
  270. <goals>
  271. <goal>shade</goal>
  272. </goals>
  273. <configuration>
  274. <transformers>
  275. <transformer
  276. implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
  277. <manifestEntries>
  278. <Main-Class>wits.webapply.App</Main-Class>
  279. <Main-Verticle>wits.webapply.App</Main-Verticle>
  280. </manifestEntries>
  281. </transformer>
  282. </transformers>
  283. <artifactSet />
  284. <outputFile>${project.build.directory}/${project.artifactId}-${project.version}-fat.jar</outputFile>
  285. </configuration>
  286. </execution>
  287. </executions>
  288. </plugin>
  289. </plugins>
  290. </build>
  291. </project>