Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

231 рядки
6.5 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>org.jeecg</groupId>
  5. <artifactId>easypoi</artifactId>
  6. <version>2.3.2-SNAPSHOT</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. </modules>
  14. <url>http://git.oschina.net/jueyue/easypoi</url>
  15. <description> office 工具类 基于 poi</description>
  16. <licenses>
  17. <license>
  18. <name>The Apache License, Version 2.0</name>
  19. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  20. </license>
  21. </licenses>
  22. <scm>
  23. <connection>scm:git@git.oschina.net:jueyue/easypoi.git</connection>
  24. <developerConnection>scm:git@git.oschina.net:jueyue/easypoi.git</developerConnection>
  25. <url>git@git.oschina.net:jueyue/easypoi.git</url>
  26. </scm>
  27. <developers>
  28. <developer>
  29. <name>JueYue</name>
  30. <email>qrb.jueyue@gmail.com</email>
  31. <organization>Jeecg</organization>
  32. <organizationUrl>http://www.jeecg.org</organizationUrl>
  33. </developer>
  34. </developers>
  35. <properties>
  36. <sub.version>2.3.2-SNAPSHOT</sub.version>
  37. <poi.version>3.10-FINAL</poi.version>
  38. <xerces.version>2.9.1</xerces.version>
  39. <guava.version>16.0.1</guava.version>
  40. <commons-lang.version>3.2.1</commons-lang.version>
  41. <slf4j.version>1.6.1</slf4j.version>
  42. <spring.version>3.1.1.RELEASE</spring.version>
  43. </properties>
  44. <dependencyManagement>
  45. <dependencies>
  46. <!-- poi -->
  47. <dependency>
  48. <groupId>org.apache.poi</groupId>
  49. <artifactId>poi</artifactId>
  50. <version>${poi.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.poi</groupId>
  54. <artifactId>poi-ooxml</artifactId>
  55. <version>${poi.version}</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.poi</groupId>
  59. <artifactId>poi-ooxml-schemas</artifactId>
  60. <exclusions>
  61. <exclusion>
  62. <groupId>xerces</groupId>
  63. <artifactId>xercesImpl</artifactId>
  64. </exclusion>
  65. </exclusions>
  66. <version>${poi.version}</version>
  67. </dependency>
  68. <!-- sax 读取时候用到的 -->
  69. <dependency>
  70. <groupId>xerces</groupId>
  71. <artifactId>xercesImpl</artifactId>
  72. <version>${xerces.version}</version>
  73. <optional>true</optional>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.poi</groupId>
  77. <artifactId>poi-scratchpad</artifactId>
  78. <version>${poi.version}</version>
  79. <optional>true</optional>
  80. </dependency>
  81. <!-- google 工具类 -->
  82. <dependency>
  83. <groupId>com.google.guava</groupId>
  84. <artifactId>guava</artifactId>
  85. <version>${guava.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.commons</groupId>
  89. <artifactId>commons-lang3</artifactId>
  90. <version>${commons-lang.version}</version>
  91. </dependency>
  92. <!--日志 -->
  93. <!-- slf4j -->
  94. <dependency>
  95. <groupId>org.slf4j</groupId>
  96. <artifactId>slf4j-api</artifactId>
  97. <version>${slf4j.version}</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.slf4j</groupId>
  101. <artifactId>slf4j-log4j12</artifactId>
  102. <version>${slf4j.version}</version>
  103. <scope>provided</scope>
  104. </dependency>
  105. <!--spring -->
  106. <dependency>
  107. <groupId>org.springframework</groupId>
  108. <artifactId>spring-web</artifactId>
  109. <version>${spring.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.springframework</groupId>
  113. <artifactId>spring-webmvc</artifactId>
  114. <version>${spring.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework</groupId>
  118. <artifactId>spring-core</artifactId>
  119. <version>${spring.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>javax.servlet</groupId>
  123. <artifactId>servlet-api</artifactId>
  124. <version>2.5</version>
  125. <scope>provided</scope>
  126. <optional>true</optional>
  127. </dependency>
  128. <!-- PDF -->
  129. <dependency>
  130. <groupId>com.itextpdf</groupId>
  131. <artifactId>itextpdf</artifactId>
  132. <version>5.5.6</version>
  133. <optional>true</optional>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.itextpdf</groupId>
  137. <artifactId>itext-asian</artifactId>
  138. <version>5.2.0</version>
  139. <optional>true</optional>
  140. </dependency>
  141. <dependency>
  142. <groupId>javax.validation</groupId>
  143. <artifactId>validation-api</artifactId>
  144. <version>1.1.0.Final</version>
  145. </dependency>
  146. <!-- 读取Excel -->
  147. <dependency>
  148. <groupId>org.jsoup</groupId>
  149. <artifactId>jsoup</artifactId>
  150. <version>1.8.3</version>
  151. </dependency>
  152. <!-- 模块版本 -->
  153. <dependency>
  154. <groupId>org.jeecg</groupId>
  155. <artifactId>easypoi-base</artifactId>
  156. <version>${sub.version}</version>
  157. </dependency>
  158. <dependency>
  159. <groupId>org.jeecg</groupId>
  160. <artifactId>easypoi-annotation</artifactId>
  161. <version>${sub.version}</version>
  162. </dependency>
  163. </dependencies>
  164. </dependencyManagement>
  165. <build>
  166. <plugins>
  167. <plugin>
  168. <groupId>org.sonatype.plugins</groupId>
  169. <artifactId>nexus-staging-maven-plugin</artifactId>
  170. <version>1.6.5</version>
  171. <configuration>
  172. <serverId>ossrh</serverId>
  173. <nexusUrl>https://oss.sonatype.org/</nexusUrl>
  174. <autoReleaseAfterClose>true</autoReleaseAfterClose>
  175. </configuration>
  176. </plugin>
  177. <plugin>
  178. <groupId>org.apache.maven.plugins</groupId>
  179. <artifactId>maven-release-plugin</artifactId>
  180. <version>2.5</version>
  181. <configuration>
  182. <autoVersionSubmodules>true</autoVersionSubmodules>
  183. <useReleaseProfile>false</useReleaseProfile>
  184. <releaseProfiles>release</releaseProfiles>
  185. <goals>deploy</goals>
  186. </configuration>
  187. </plugin>
  188. <plugin>
  189. <groupId>org.apache.maven.plugins</groupId>
  190. <artifactId>maven-compiler-plugin</artifactId>
  191. <version>3.0</version>
  192. <configuration>
  193. <source>1.6</source>
  194. <target>1.6</target>
  195. <encoding>UTF-8</encoding>
  196. </configuration>
  197. </plugin>
  198. </plugins>
  199. </build>
  200. <distributionManagement>
  201. <repository>
  202. <id>postaop-pay-platform-release</id>
  203. <url>http://postaop.oicp.net:8081/nexus/content/repositories/postaop-common-release/</url>
  204. </repository>
  205. <snapshotRepository>
  206. <id>postaop-pay-platform-snapshot</id>
  207. <url>http://postaop.oicp.net:8081/nexus/content/repositories/postaop-common-snapshot/</url>
  208. </snapshotRepository>
  209. </distributionManagement>
  210. </project>