easypoi-4.4.0.pom 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  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>cn.afterturn</groupId>
  5. <artifactId>easypoi</artifactId>
  6. <version>4.4.0</version>
  7. <packaging>pom</packaging>
  8. <name>easypoi</name>
  9. <modules>
  10. <module>easypoi-base</module>
  11. <module>easypoi-web</module>
  12. <module>easypoi-annotation</module>
  13. <module>easypoi-wps</module>
  14. </modules>
  15. <url>http://www.wupaas.com/</url>
  16. <description>office utils base poi</description>
  17. <licenses>
  18. <license>
  19. <name>The Apache License, Version 2.0</name>
  20. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  21. </license>
  22. </licenses>
  23. <scm>
  24. <connection>https://github.com/jueyue/easypoi.git</connection>
  25. <developerConnection>https://github.com/jueyue/easypoi.git</developerConnection>
  26. <url>https://github.com/jueyue/easypoi.git</url>
  27. </scm>
  28. <developers>
  29. <developer>
  30. <name>JueYue</name>
  31. <email>quranbo@foxmail.com</email>
  32. </developer>
  33. <developer>
  34. <name>魔幻之翼</name>
  35. <email>xf.key@163.com</email>
  36. </developer>
  37. </developers>
  38. <organization>
  39. <name>悟耘</name>
  40. <url>http://www.wupaas.com/</url>
  41. </organization>
  42. <properties>
  43. <sub.version>4.4.0</sub.version>
  44. <poi.version>4.1.1</poi.version>
  45. <xerces.version>2.9.1</xerces.version>
  46. <guava.version>16.0.1</guava.version>
  47. <commons-lang.version>3.2.1</commons-lang.version>
  48. <slf4j.version>1.6.1</slf4j.version>
  49. <spring.version>5.1.7.RELEASE</spring.version>
  50. </properties>
  51. <dependencyManagement>
  52. <dependencies>
  53. <!-- poi -->
  54. <dependency>
  55. <groupId>org.apache.poi</groupId>
  56. <artifactId>poi</artifactId>
  57. <version>${poi.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>org.apache.poi</groupId>
  61. <artifactId>poi-ooxml</artifactId>
  62. <version>${poi.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>org.apache.poi</groupId>
  66. <artifactId>poi-ooxml-schemas</artifactId>
  67. <exclusions>
  68. <exclusion>
  69. <groupId>xerces</groupId>
  70. <artifactId>xercesImpl</artifactId>
  71. </exclusion>
  72. </exclusions>
  73. <version>${poi.version}</version>
  74. </dependency>
  75. <!-- sax -->
  76. <dependency>
  77. <groupId>xerces</groupId>
  78. <artifactId>xercesImpl</artifactId>
  79. <version>${xerces.version}</version>
  80. <optional>true</optional>
  81. </dependency>
  82. <dependency>
  83. <groupId>org.apache.poi</groupId>
  84. <artifactId>poi-scratchpad</artifactId>
  85. <version>${poi.version}</version>
  86. <optional>true</optional>
  87. </dependency>
  88. <!-- Word -->
  89. <dependency>
  90. <groupId>org.apache.poi</groupId>
  91. <artifactId>poi-ooxml-schemas</artifactId>
  92. <version>${poi.version}</version>
  93. <optional>true</optional>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.xmlbeans</groupId>
  97. <artifactId>xmlbeans</artifactId>
  98. <version>3.1.0</version>
  99. <optional>true</optional>
  100. </dependency>
  101. <!-- google 工具类 -->
  102. <dependency>
  103. <groupId>com.google.guava</groupId>
  104. <artifactId>guava</artifactId>
  105. <version>${guava.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.commons</groupId>
  109. <artifactId>commons-lang3</artifactId>
  110. <version>${commons-lang.version}</version>
  111. </dependency>
  112. <!--日志 -->
  113. <!-- slf4j -->
  114. <dependency>
  115. <groupId>org.slf4j</groupId>
  116. <artifactId>slf4j-api</artifactId>
  117. <version>${slf4j.version}</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>org.slf4j</groupId>
  121. <artifactId>slf4j-log4j12</artifactId>
  122. <version>${slf4j.version}</version>
  123. <scope>provided</scope>
  124. </dependency>
  125. <!--spring -->
  126. <dependency>
  127. <groupId>org.springframework</groupId>
  128. <artifactId>spring-web</artifactId>
  129. <version>${spring.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.springframework</groupId>
  133. <artifactId>spring-webmvc</artifactId>
  134. <version>${spring.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.springframework</groupId>
  138. <artifactId>spring-context</artifactId>
  139. <version>${spring.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.springframework</groupId>
  143. <artifactId>spring-core</artifactId>
  144. <version>${spring.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.springframework</groupId>
  148. <artifactId>spring-beans</artifactId>
  149. <version>${spring.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>javax.servlet</groupId>
  153. <artifactId>servlet-api</artifactId>
  154. <version>2.5</version>
  155. <scope>provided</scope>
  156. <optional>true</optional>
  157. </dependency>
  158. <!-- PDF -->
  159. <dependency>
  160. <groupId>com.itextpdf</groupId>
  161. <artifactId>itext7-core</artifactId>
  162. <version>7.1.12</version>
  163. <type>pom</type>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.itextpdf</groupId>
  167. <artifactId>itext-asian</artifactId>
  168. <version>5.2.0</version>
  169. <optional>true</optional>
  170. </dependency>
  171. <dependency>
  172. <groupId>javax.validation</groupId>
  173. <artifactId>validation-api</artifactId>
  174. <version>1.1.0.Final</version>
  175. </dependency>
  176. <!-- el -->
  177. <dependency>
  178. <groupId>ognl</groupId>
  179. <artifactId>ognl</artifactId>
  180. <version>3.2.6</version>
  181. </dependency>
  182. <!-- read Excel -->
  183. <dependency>
  184. <groupId>org.jsoup</groupId>
  185. <artifactId>jsoup</artifactId>
  186. <version>1.8.3</version>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.projectlombok</groupId>
  190. <artifactId>lombok</artifactId>
  191. <version>1.16.20</version>
  192. <scope>provided</scope>
  193. </dependency>
  194. <!-- model -->
  195. <dependency>
  196. <groupId>cn.afterturn</groupId>
  197. <artifactId>easypoi-base</artifactId>
  198. <version>${sub.version}</version>
  199. </dependency>
  200. <dependency>
  201. <groupId>cn.afterturn</groupId>
  202. <artifactId>easypoi-annotation</artifactId>
  203. <version>${sub.version}</version>
  204. </dependency>
  205. </dependencies>
  206. </dependencyManagement>
  207. <build>
  208. <plugins>
  209. <plugin>
  210. <groupId>org.sonatype.plugins</groupId>
  211. <artifactId>nexus-staging-maven-plugin</artifactId>
  212. <version>1.6.5</version>
  213. <configuration>
  214. <serverId>ossrh</serverId>
  215. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  216. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  217. </configuration>
  218. </plugin>
  219. <plugin>
  220. <groupId>org.apache.maven.plugins</groupId>
  221. <artifactId>maven-release-plugin</artifactId>
  222. <version>2.5</version>
  223. <configuration>
  224. <autoVersionSubmodules>true</autoVersionSubmodules>
  225. <useReleaseProfile>false</useReleaseProfile>
  226. <releaseProfiles>release</releaseProfiles>
  227. <goals>deploy</goals>
  228. </configuration>
  229. </plugin>
  230. <plugin>
  231. <groupId>org.apache.maven.plugins</groupId>
  232. <artifactId>maven-compiler-plugin</artifactId>
  233. <version>3.0</version>
  234. <configuration>
  235. <source>1.8</source>
  236. <target>1.8</target>
  237. <encoding>UTF-8</encoding>
  238. </configuration>
  239. </plugin>
  240. <plugin>
  241. <groupId>org.apache.maven.plugins</groupId>
  242. <artifactId>maven-gpg-plugin</artifactId>
  243. <version>1.6</version>
  244. <executions>
  245. <execution>
  246. <id>sign-artifacts</id>
  247. <phase>verify</phase>
  248. <goals>
  249. <goal>sign</goal>
  250. </goals>
  251. </execution>
  252. </executions>
  253. </plugin>
  254. <plugin>
  255. <groupId>org.apache.maven.plugins</groupId>
  256. <artifactId>maven-source-plugin</artifactId>
  257. <version>2.2.1</version>
  258. <executions>
  259. <execution>
  260. <id>attach-sources</id>
  261. <goals>
  262. <goal>jar-no-fork</goal>
  263. </goals>
  264. </execution>
  265. </executions>
  266. </plugin>
  267. <plugin>
  268. <groupId>org.apache.maven.plugins</groupId>
  269. <artifactId>maven-javadoc-plugin</artifactId>
  270. <version>2.6</version>
  271. <executions>
  272. <execution>
  273. <id>attach-javadocs</id>
  274. <goals>
  275. <goal>jar</goal>
  276. </goals>
  277. <configuration>
  278. <additionalparam>-Xdoclint:none</additionalparam>
  279. </configuration>
  280. </execution>
  281. </executions>
  282. <configuration>
  283. <encoding>UTF-8</encoding>
  284. <failOnError>false</failOnError>
  285. </configuration>
  286. </plugin>
  287. </plugins>
  288. </build>
  289. <distributionManagement>
  290. <repository>
  291. <id>oss-release</id>
  292. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  293. </repository>
  294. <snapshotRepository>
  295. <id>oss-snapshot</id>
  296. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  297. </snapshotRepository>
  298. </distributionManagement>
  299. </project>