Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

213 Zeilen
5.9 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.6-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.6-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. <!-- 模块版本 -->
  129. <dependency>
  130. <groupId>org.jeecg</groupId>
  131. <artifactId>easypoi-base</artifactId>
  132. <version>${sub.version}</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.jeecg</groupId>
  136. <artifactId>easypoi-annotation</artifactId>
  137. <version>${sub.version}</version>
  138. </dependency>
  139. </dependencies>
  140. </dependencyManagement>
  141. <build>
  142. <plugins>
  143. <plugin>
  144. <groupId>org.apache.maven.plugins</groupId>
  145. <artifactId>maven-compiler-plugin</artifactId>
  146. <version>3.0</version>
  147. <configuration>
  148. <source>1.6</source>
  149. <target>1.6</target>
  150. <encoding>UTF-8</encoding>
  151. </configuration>
  152. </plugin>
  153. <plugin>
  154. <groupId>org.apache.maven.plugins</groupId>
  155. <artifactId>maven-source-plugin</artifactId>
  156. <version>2.2.1</version>
  157. <executions>
  158. <execution>
  159. <id>attach-sources</id>
  160. <goals>
  161. <goal>jar-no-fork</goal>
  162. </goals>
  163. </execution>
  164. </executions>
  165. <configuration>
  166. <encoding>UTF-8</encoding>
  167. </configuration>
  168. </plugin>
  169. <plugin>
  170. <groupId>org.apache.maven.plugins</groupId>
  171. <artifactId>maven-javadoc-plugin</artifactId>
  172. <version>2.9</version>
  173. <executions>
  174. <execution>
  175. <id>attach-javadocs</id>
  176. <goals>
  177. <goal>jar</goal>
  178. </goals>
  179. </execution>
  180. </executions>
  181. <configuration>
  182. <encoding>UTF-8</encoding>
  183. </configuration>
  184. </plugin>
  185. </plugins>
  186. </build>
  187. <distributionManagement>
  188. <repository>
  189. <id>oss-release</id>
  190. <url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
  191. </repository>
  192. <snapshotRepository>
  193. <id>oss-snapshot</id>
  194. <url>https://oss.sonatype.org/content/repositories/snapshots</url>
  195. </snapshotRepository>
  196. </distributionManagement>
  197. </project>