選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

184 行
5.1 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.jeecgframework</groupId>
  5. <artifactId>easypoi</artifactId>
  6. <version>2.1.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-test</module>
  13. <module>easypoi-annotation</module>
  14. </modules>
  15. <url>www.jeecg.org</url>
  16. <description> office 工具类 基于 poi</description>
  17. <developers>
  18. <developer>
  19. <name>JueYue</name>
  20. <email>qrb.jueyue@gmail.com</email>
  21. </developer>
  22. </developers>
  23. <properties>
  24. <sub.version>2.1.2-SNAPSHOT</sub.version>
  25. <poi.version>3.9</poi.version>
  26. <xerces.version>2.9.1</xerces.version>
  27. <guava.version>16.0.1</guava.version>
  28. <commons-lang.version>3.2.1</commons-lang.version>
  29. <slf4j.version>1.6.1</slf4j.version>
  30. <spring.version>3.1.1.RELEASE</spring.version>
  31. <junit.version>4.7</junit.version>
  32. </properties>
  33. <dependencyManagement>
  34. <dependencies>
  35. <!-- poi -->
  36. <dependency>
  37. <groupId>org.apache.poi</groupId>
  38. <artifactId>poi</artifactId>
  39. <version>${poi.version}</version>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.apache.poi</groupId>
  43. <artifactId>poi-ooxml</artifactId>
  44. <version>${poi.version}</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>org.apache.poi</groupId>
  48. <artifactId>poi-ooxml-schemas</artifactId>
  49. <version>${poi.version}</version>
  50. </dependency>
  51. <!-- sax 读取时候用到的 -->
  52. <dependency>
  53. <groupId>xerces</groupId>
  54. <artifactId>xercesImpl</artifactId>
  55. <version>${xerces.version}</version>
  56. <optional>true</optional>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.poi</groupId>
  60. <artifactId>poi-scratchpad</artifactId>
  61. <version>${poi.version}</version>
  62. </dependency>
  63. <!-- google 工具类 -->
  64. <dependency>
  65. <groupId>com.google.guava</groupId>
  66. <artifactId>guava</artifactId>
  67. <version>${guava.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.apache.commons</groupId>
  71. <artifactId>commons-lang3</artifactId>
  72. <version>${commons-lang.version}</version>
  73. </dependency>
  74. <!--日志 -->
  75. <!-- slf4j -->
  76. <dependency>
  77. <groupId>org.slf4j</groupId>
  78. <artifactId>slf4j-api</artifactId>
  79. <version>${slf4j.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>org.slf4j</groupId>
  83. <artifactId>slf4j-log4j12</artifactId>
  84. <version>${slf4j.version}</version>
  85. <scope>provided</scope>
  86. </dependency>
  87. <!--spring -->
  88. <dependency>
  89. <groupId>org.springframework</groupId>
  90. <artifactId>spring-web</artifactId>
  91. <version>${spring.version}</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.springframework</groupId>
  95. <artifactId>spring-webmvc</artifactId>
  96. <version>${spring.version}</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.springframework</groupId>
  100. <artifactId>spring-core</artifactId>
  101. <version>${spring.version}</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>javax.servlet</groupId>
  105. <artifactId>servlet-api</artifactId>
  106. <version>2.5</version>
  107. <scope>provided</scope>
  108. <optional>true</optional>
  109. </dependency>
  110. <!-- test -->
  111. <dependency>
  112. <groupId>junit</groupId>
  113. <artifactId>junit</artifactId>
  114. <version>${junit.version}</version>
  115. <scope>test</scope>
  116. </dependency>
  117. <!-- 模块版本 -->
  118. <dependency>
  119. <groupId>org.jeecgframework</groupId>
  120. <artifactId>easypoi-base</artifactId>
  121. <version>${sub.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.jeecgframework</groupId>
  125. <artifactId>easypoi-annotation</artifactId>
  126. <version>${sub.version}</version>
  127. </dependency>
  128. </dependencies>
  129. </dependencyManagement>
  130. <build>
  131. <plugins>
  132. <plugin>
  133. <artifactId>maven-compiler-plugin</artifactId>
  134. <version>2.3.2</version>
  135. <configuration>
  136. <source>1.6</source>
  137. <target>1.6</target>
  138. <showWarnings>true</showWarnings>
  139. <encoding>UTF-8</encoding>
  140. </configuration>
  141. </plugin>
  142. <plugin>
  143. <artifactId>maven-source-plugin</artifactId>
  144. <version>2.1</version>
  145. <configuration>
  146. <attach>true</attach>
  147. </configuration>
  148. <executions>
  149. <execution>
  150. <phase>compile</phase>
  151. <goals>
  152. <goal>jar</goal>
  153. </goals>
  154. </execution>
  155. </executions>
  156. </plugin>
  157. </plugins>
  158. </build>
  159. <distributionManagement>
  160. <repository>
  161. <id>postaop-common-release</id>
  162. <url>http://172.16.100.99:8081/nexus/content/repositories/postaop-common-release/</url>
  163. </repository>
  164. <snapshotRepository>
  165. <id>postaop-common-snapshot</id>
  166. <url>http://172.16.100.99:8081/nexus/content/repositories/postaop-common-snapshot/</url>
  167. </snapshotRepository>
  168. </distributionManagement>
  169. </project>