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.

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