Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

298 строки
10 KiB

  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.2.0</version>
  7. <packaging>pom</packaging>
  8. <name>easypoi</name>
  9. <modules>
  10. <module>easypoi-annotation</module>
  11. <module>easypoi-base</module>
  12. <module>easypoi-web</module>
  13. <module>easypoi-wps</module>
  14. </modules>
  15. <url>http://opensource.afterturn.cn/</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>Lemur</name>
  40. <url>http://opensource.afterturn.cn/</url>
  41. </organization>
  42. <properties>
  43. <sub.version>4.2.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.7.26</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. <!-- slf4j -->
  113. <dependency>
  114. <groupId>org.slf4j</groupId>
  115. <artifactId>slf4j-api</artifactId>
  116. <version>${slf4j.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.slf4j</groupId>
  120. <artifactId>slf4j-log4j12</artifactId>
  121. <version>${slf4j.version}</version>
  122. <scope>provided</scope>
  123. </dependency>
  124. <!--spring -->
  125. <dependency>
  126. <groupId>org.springframework</groupId>
  127. <artifactId>spring-web</artifactId>
  128. <version>${spring.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.springframework</groupId>
  132. <artifactId>spring-webmvc</artifactId>
  133. <version>${spring.version}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.springframework</groupId>
  137. <artifactId>spring-context</artifactId>
  138. <version>${spring.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.springframework</groupId>
  142. <artifactId>spring-core</artifactId>
  143. <version>${spring.version}</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>org.springframework</groupId>
  147. <artifactId>spring-beans</artifactId>
  148. <version>${spring.version}</version>
  149. </dependency>
  150. <dependency>
  151. <groupId>javax.servlet</groupId>
  152. <artifactId>servlet-api</artifactId>
  153. <version>2.5</version>
  154. <scope>provided</scope>
  155. <optional>true</optional>
  156. </dependency>
  157. <!-- PDF -->
  158. <dependency>
  159. <groupId>com.itextpdf</groupId>
  160. <artifactId>itextpdf</artifactId>
  161. <version>5.5.6</version>
  162. <optional>true</optional>
  163. </dependency>
  164. <dependency>
  165. <groupId>com.itextpdf</groupId>
  166. <artifactId>itext-asian</artifactId>
  167. <version>5.2.0</version>
  168. <optional>true</optional>
  169. </dependency>
  170. <dependency>
  171. <groupId>javax.validation</groupId>
  172. <artifactId>validation-api</artifactId>
  173. <version>1.1.0.Final</version>
  174. </dependency>
  175. <!-- Excel -->
  176. <dependency>
  177. <groupId>org.jsoup</groupId>
  178. <artifactId>jsoup</artifactId>
  179. <version>1.8.3</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>ognl</groupId>
  183. <artifactId>ognl</artifactId>
  184. <version>3.2.6</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.projectlombok</groupId>
  188. <artifactId>lombok</artifactId>
  189. <version>1.16.20</version>
  190. <scope>provided</scope>
  191. </dependency>
  192. <!-- model -->
  193. <dependency>
  194. <groupId>cn.afterturn</groupId>
  195. <artifactId>easypoi-base</artifactId>
  196. <version>${sub.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>cn.afterturn</groupId>
  200. <artifactId>easypoi-annotation</artifactId>
  201. <version>${sub.version}</version>
  202. </dependency>
  203. </dependencies>
  204. </dependencyManagement>
  205. <build>
  206. <plugins>
  207. <plugin>
  208. <groupId>org.sonatype.plugins</groupId>
  209. <artifactId>nexus-staging-maven-plugin</artifactId>
  210. <version>1.6.5</version>
  211. <configuration>
  212. <serverId>ossrh</serverId>
  213. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  214. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  215. </configuration>
  216. </plugin>
  217. <plugin>
  218. <groupId>org.apache.maven.plugins</groupId>
  219. <artifactId>maven-release-plugin</artifactId>
  220. <version>2.5</version>
  221. <configuration>
  222. <autoVersionSubmodules>true</autoVersionSubmodules>
  223. <useReleaseProfile>false</useReleaseProfile>
  224. <releaseProfiles>release</releaseProfiles>
  225. <goals>deploy</goals>
  226. </configuration>
  227. </plugin>
  228. <plugin>
  229. <artifactId>maven-source-plugin</artifactId>
  230. <version>2.1</version>
  231. <configuration>
  232. <attach>true</attach>
  233. </configuration>
  234. <executions>
  235. <execution>
  236. <phase>compile</phase>
  237. <goals>
  238. <goal>jar</goal>
  239. </goals>
  240. </execution>
  241. </executions>
  242. </plugin>
  243. <plugin>
  244. <groupId>org.apache.maven.plugins</groupId>
  245. <artifactId>maven-compiler-plugin</artifactId>
  246. <version>3.0</version>
  247. <configuration>
  248. <source>1.8</source>
  249. <target>1.8</target>
  250. <encoding>UTF-8</encoding>
  251. </configuration>
  252. </plugin>
  253. <plugin>
  254. <groupId>org.apache.maven.plugins</groupId>
  255. <artifactId>maven-javadoc-plugin</artifactId>
  256. <version>2.6</version>
  257. <executions>
  258. <execution>
  259. <id>attach-javadocs</id>
  260. <goals>
  261. <goal>jar</goal>
  262. </goals>
  263. <configuration>
  264. <additionalparam>-Xdoclint:none</additionalparam>
  265. </configuration>
  266. </execution>
  267. </executions>
  268. <configuration>
  269. <encoding>UTF-8</encoding>
  270. <failOnError>false</failOnError>
  271. </configuration>
  272. </plugin>
  273. </plugins>
  274. </build>
  275. </project>