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

235 рядки
6.4 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.1.7-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.1.7-SNAPSHOT</sub.version>
  37. <poi.version>3.9</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>org.hibernate</groupId>
  143. <artifactId>hibernate-validator</artifactId>
  144. <version>5.1.3.Final</version>
  145. <optional>true</optional>
  146. </dependency>
  147. <!-- 模块版本 -->
  148. <dependency>
  149. <groupId>org.jeecg</groupId>
  150. <artifactId>easypoi-base</artifactId>
  151. <version>${sub.version}</version>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.jeecg</groupId>
  155. <artifactId>easypoi-annotation</artifactId>
  156. <version>${sub.version}</version>
  157. </dependency>
  158. </dependencies>
  159. </dependencyManagement>
  160. <build>
  161. <plugins>
  162. <plugin>
  163. <groupId>org.apache.maven.plugins</groupId>
  164. <artifactId>maven-compiler-plugin</artifactId>
  165. <version>3.0</version>
  166. <configuration>
  167. <source>1.6</source>
  168. <target>1.6</target>
  169. <encoding>UTF-8</encoding>
  170. </configuration>
  171. </plugin>
  172. <plugin>
  173. <groupId>org.apache.maven.plugins</groupId>
  174. <artifactId>maven-source-plugin</artifactId>
  175. <version>2.2.1</version>
  176. <executions>
  177. <execution>
  178. <id>attach-sources</id>
  179. <goals>
  180. <goal>jar-no-fork</goal>
  181. </goals>
  182. </execution>
  183. </executions>
  184. <configuration>
  185. <encoding>UTF-8</encoding>
  186. </configuration>
  187. </plugin>
  188. <plugin>
  189. <groupId>org.apache.maven.plugins</groupId>
  190. <artifactId>maven-javadoc-plugin</artifactId>
  191. <version>2.9</version>
  192. <executions>
  193. <execution>
  194. <id>attach-javadocs</id>
  195. <goals>
  196. <goal>jar</goal>
  197. </goals>
  198. </execution>
  199. </executions>
  200. <configuration>
  201. <encoding>UTF-8</encoding>
  202. </configuration>
  203. </plugin>
  204. </plugins>
  205. </build>
  206. <distributionManagement>
  207. <repository>
  208. <id>oss-release</id>
  209. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  210. </repository>
  211. <snapshotRepository>
  212. <id>oss-snapshot</id>
  213. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  214. </snapshotRepository>
  215. </distributionManagement>
  216. </project>