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.

181 lines
5.0 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.0.8-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.0.8-SNAPSHOT</sub.version>
  25. <poi.version>3.9</poi.version>
  26. <xerces.version>2.4.0</xerces.version>
  27. <guava.version>16.0.1</guava.version>
  28. <commons-lang.version>2.6</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. <dependency>
  52. <groupId>org.apache.poi</groupId>
  53. <artifactId>poi-scratchpad</artifactId>
  54. <version>${poi.version}</version>
  55. </dependency>
  56. <!-- google 工具类 -->
  57. <dependency>
  58. <groupId>com.google.guava</groupId>
  59. <artifactId>guava</artifactId>
  60. <version>${guava.version}</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>commons-lang</groupId>
  64. <artifactId>commons-lang</artifactId>
  65. <version>${commons-lang.version}</version>
  66. </dependency>
  67. <!--日志 -->
  68. <!-- slf4j -->
  69. <dependency>
  70. <groupId>org.slf4j</groupId>
  71. <artifactId>slf4j-api</artifactId>
  72. <version>${slf4j.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.slf4j</groupId>
  76. <artifactId>slf4j-log4j12</artifactId>
  77. <version>${slf4j.version}</version>
  78. <scope>provided</scope>
  79. </dependency>
  80. <!--spring -->
  81. <dependency>
  82. <groupId>org.springframework</groupId>
  83. <artifactId>spring-web</artifactId>
  84. <version>${spring.version}</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>org.springframework</groupId>
  88. <artifactId>spring-webmvc</artifactId>
  89. <version>${spring.version}</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>org.springframework</groupId>
  93. <artifactId>spring-core</artifactId>
  94. <version>${spring.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>xerces</groupId>
  98. <artifactId>xerces</artifactId>
  99. <version>${xerces.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>javax.servlet</groupId>
  103. <artifactId>servlet-api</artifactId>
  104. <version>2.5</version>
  105. <scope>provided</scope>
  106. <optional>true</optional>
  107. </dependency>
  108. <!-- test -->
  109. <dependency>
  110. <groupId>junit</groupId>
  111. <artifactId>junit</artifactId>
  112. <version>${junit.version}</version>
  113. <scope>test</scope>
  114. </dependency>
  115. <!-- 模块版本 -->
  116. <dependency>
  117. <groupId>org.jeecgframework</groupId>
  118. <artifactId>easypoi-base</artifactId>
  119. <version>${sub.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.jeecgframework</groupId>
  123. <artifactId>easypoi-annotation</artifactId>
  124. <version>${sub.version}</version>
  125. </dependency>
  126. </dependencies>
  127. </dependencyManagement>
  128. <build>
  129. <plugins>
  130. <plugin>
  131. <artifactId>maven-compiler-plugin</artifactId>
  132. <version>2.3.2</version>
  133. <configuration>
  134. <source>1.6</source>
  135. <target>1.6</target>
  136. <showWarnings>true</showWarnings>
  137. <encoding>UTF-8</encoding>
  138. </configuration>
  139. </plugin>
  140. <plugin>
  141. <artifactId>maven-source-plugin</artifactId>
  142. <version>2.1</version>
  143. <configuration>
  144. <attach>true</attach>
  145. </configuration>
  146. <executions>
  147. <execution>
  148. <phase>compile</phase>
  149. <goals>
  150. <goal>jar</goal>
  151. </goals>
  152. </execution>
  153. </executions>
  154. </plugin>
  155. </plugins>
  156. </build>
  157. <distributionManagement>
  158. <repository>
  159. <id>postaop-common-release</id>
  160. <url>http://172.16.100.99:8081/nexus/content/repositories/postaop-common-release/</url>
  161. </repository>
  162. <snapshotRepository>
  163. <id>postaop-common-snapshot</id>
  164. <url>http://172.16.100.99:8081/nexus/content/repositories/postaop-common-snapshot/</url>
  165. </snapshotRepository>
  166. </distributionManagement>
  167. </project>