You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

302 rivejä
11 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.A</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. <<<<<<< HEAD
  44. <sub.version>4.2.0</sub.version>
  45. =======
  46. <sub.version>4.1.3.A</sub.version>
  47. >>>>>>> 支持前缀
  48. <poi.version>4.1.1</poi.version>
  49. <xerces.version>2.9.1</xerces.version>
  50. <guava.version>16.0.1</guava.version>
  51. <commons-lang.version>3.2.1</commons-lang.version>
  52. <slf4j.version>1.7.26</slf4j.version>
  53. <spring.version>5.1.7.RELEASE</spring.version>
  54. </properties>
  55. <dependencyManagement>
  56. <dependencies>
  57. <!-- poi -->
  58. <dependency>
  59. <groupId>org.apache.poi</groupId>
  60. <artifactId>poi</artifactId>
  61. <version>${poi.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>org.apache.poi</groupId>
  65. <artifactId>poi-ooxml</artifactId>
  66. <version>${poi.version}</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.apache.poi</groupId>
  70. <artifactId>poi-ooxml-schemas</artifactId>
  71. <exclusions>
  72. <exclusion>
  73. <groupId>xerces</groupId>
  74. <artifactId>xercesImpl</artifactId>
  75. </exclusion>
  76. </exclusions>
  77. <version>${poi.version}</version>
  78. </dependency>
  79. <!-- sax -->
  80. <dependency>
  81. <groupId>xerces</groupId>
  82. <artifactId>xercesImpl</artifactId>
  83. <version>${xerces.version}</version>
  84. <optional>true</optional>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.apache.poi</groupId>
  88. <artifactId>poi-scratchpad</artifactId>
  89. <version>${poi.version}</version>
  90. <optional>true</optional>
  91. </dependency>
  92. <!-- Word-->
  93. <dependency>
  94. <groupId>org.apache.poi</groupId>
  95. <artifactId>poi-ooxml-schemas</artifactId>
  96. <version>${poi.version}</version>
  97. <optional>true</optional>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.xmlbeans</groupId>
  101. <artifactId>xmlbeans</artifactId>
  102. <version>3.1.0</version>
  103. <optional>true</optional>
  104. </dependency>
  105. <!-- google-->
  106. <dependency>
  107. <groupId>com.google.guava</groupId>
  108. <artifactId>guava</artifactId>
  109. <version>${guava.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.commons</groupId>
  113. <artifactId>commons-lang3</artifactId>
  114. <version>${commons-lang.version}</version>
  115. </dependency>
  116. <!-- slf4j -->
  117. <dependency>
  118. <groupId>org.slf4j</groupId>
  119. <artifactId>slf4j-api</artifactId>
  120. <version>${slf4j.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.slf4j</groupId>
  124. <artifactId>slf4j-log4j12</artifactId>
  125. <version>${slf4j.version}</version>
  126. <scope>provided</scope>
  127. </dependency>
  128. <!--spring -->
  129. <dependency>
  130. <groupId>org.springframework</groupId>
  131. <artifactId>spring-web</artifactId>
  132. <version>${spring.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.springframework</groupId>
  136. <artifactId>spring-webmvc</artifactId>
  137. <version>${spring.version}</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.springframework</groupId>
  141. <artifactId>spring-context</artifactId>
  142. <version>${spring.version}</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.springframework</groupId>
  146. <artifactId>spring-core</artifactId>
  147. <version>${spring.version}</version>
  148. </dependency>
  149. <dependency>
  150. <groupId>org.springframework</groupId>
  151. <artifactId>spring-beans</artifactId>
  152. <version>${spring.version}</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>javax.servlet</groupId>
  156. <artifactId>servlet-api</artifactId>
  157. <version>2.5</version>
  158. <scope>provided</scope>
  159. <optional>true</optional>
  160. </dependency>
  161. <!-- PDF -->
  162. <dependency>
  163. <groupId>com.itextpdf</groupId>
  164. <artifactId>itextpdf</artifactId>
  165. <version>5.5.6</version>
  166. <optional>true</optional>
  167. </dependency>
  168. <dependency>
  169. <groupId>com.itextpdf</groupId>
  170. <artifactId>itext-asian</artifactId>
  171. <version>5.2.0</version>
  172. <optional>true</optional>
  173. </dependency>
  174. <dependency>
  175. <groupId>javax.validation</groupId>
  176. <artifactId>validation-api</artifactId>
  177. <version>1.1.0.Final</version>
  178. </dependency>
  179. <!-- Excel -->
  180. <dependency>
  181. <groupId>org.jsoup</groupId>
  182. <artifactId>jsoup</artifactId>
  183. <version>1.8.3</version>
  184. </dependency>
  185. <dependency>
  186. <groupId>ognl</groupId>
  187. <artifactId>ognl</artifactId>
  188. <version>3.2.6</version>
  189. </dependency>
  190. <dependency>
  191. <groupId>org.projectlombok</groupId>
  192. <artifactId>lombok</artifactId>
  193. <version>1.16.20</version>
  194. <scope>provided</scope>
  195. </dependency>
  196. <!-- model -->
  197. <dependency>
  198. <groupId>cn.afterturn</groupId>
  199. <artifactId>easypoi-base</artifactId>
  200. <version>${sub.version}</version>
  201. </dependency>
  202. <dependency>
  203. <groupId>cn.afterturn</groupId>
  204. <artifactId>easypoi-annotation</artifactId>
  205. <version>${sub.version}</version>
  206. </dependency>
  207. </dependencies>
  208. </dependencyManagement>
  209. <build>
  210. <plugins>
  211. <plugin>
  212. <groupId>org.sonatype.plugins</groupId>
  213. <artifactId>nexus-staging-maven-plugin</artifactId>
  214. <version>1.6.5</version>
  215. <configuration>
  216. <serverId>ossrh</serverId>
  217. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  218. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  219. </configuration>
  220. </plugin>
  221. <plugin>
  222. <groupId>org.apache.maven.plugins</groupId>
  223. <artifactId>maven-release-plugin</artifactId>
  224. <version>2.5</version>
  225. <configuration>
  226. <autoVersionSubmodules>true</autoVersionSubmodules>
  227. <useReleaseProfile>false</useReleaseProfile>
  228. <releaseProfiles>release</releaseProfiles>
  229. <goals>deploy</goals>
  230. </configuration>
  231. </plugin>
  232. <plugin>
  233. <artifactId>maven-source-plugin</artifactId>
  234. <version>2.1</version>
  235. <configuration>
  236. <attach>true</attach>
  237. </configuration>
  238. <executions>
  239. <execution>
  240. <phase>compile</phase>
  241. <goals>
  242. <goal>jar</goal>
  243. </goals>
  244. </execution>
  245. </executions>
  246. </plugin>
  247. <plugin>
  248. <groupId>org.apache.maven.plugins</groupId>
  249. <artifactId>maven-compiler-plugin</artifactId>
  250. <version>3.0</version>
  251. <configuration>
  252. <source>1.8</source>
  253. <target>1.8</target>
  254. <encoding>UTF-8</encoding>
  255. </configuration>
  256. </plugin>
  257. <plugin>
  258. <groupId>org.apache.maven.plugins</groupId>
  259. <artifactId>maven-javadoc-plugin</artifactId>
  260. <version>2.6</version>
  261. <executions>
  262. <execution>
  263. <id>attach-javadocs</id>
  264. <goals>
  265. <goal>jar</goal>
  266. </goals>
  267. <configuration>
  268. <additionalparam>-Xdoclint:none</additionalparam>
  269. </configuration>
  270. </execution>
  271. </executions>
  272. <configuration>
  273. <encoding>UTF-8</encoding>
  274. <failOnError>false</failOnError>
  275. </configuration>
  276. </plugin>
  277. </plugins>
  278. </build>
  279. </project>