Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

156 rader
4.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.jeecgframework</groupId>
  5. <artifactId>easypoi</artifactId>
  6. <version>2.0.1</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. <poi-ooxml-schemas.version>3.9</poi-ooxml-schemas.version>
  24. <poi-ooxml.version>3.9</poi-ooxml.version>
  25. <poi-scratchpad.version>3.9</poi-scratchpad.version>
  26. <poi.version>3.9</poi.version>
  27. <guava.version>16.0.1</guava.version>
  28. <reflectasm.version>1.09</reflectasm.version>
  29. <commons-lang.version>2.6</commons-lang.version>
  30. <slf4j.version>1.6.1</slf4j.version>
  31. <spring.version>3.1.1.RELEASE</spring.version>
  32. <junit.version>4.7</junit.version>
  33. </properties>
  34. <dependencyManagement>
  35. <dependencies>
  36. <!-- poi -->
  37. <dependency>
  38. <groupId>org.apache.poi</groupId>
  39. <artifactId>poi</artifactId>
  40. <version>${poi.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.apache.poi</groupId>
  44. <artifactId>poi-ooxml</artifactId>
  45. <version>${poi-ooxml.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.apache.poi</groupId>
  49. <artifactId>poi-ooxml-schemas</artifactId>
  50. <version>${poi-ooxml-schemas.version}</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.poi</groupId>
  54. <artifactId>poi-scratchpad</artifactId>
  55. <version>${poi-scratchpad.version}</version>
  56. </dependency>
  57. <!-- google 工具类 -->
  58. <dependency>
  59. <groupId>com.google.guava</groupId>
  60. <artifactId>guava</artifactId>
  61. <version>${guava.version}</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>commons-lang</groupId>
  65. <artifactId>commons-lang</artifactId>
  66. <version>${commons-lang.version}</version>
  67. </dependency>
  68. <!--日志 -->
  69. <!-- slf4j -->
  70. <dependency>
  71. <groupId>org.slf4j</groupId>
  72. <artifactId>slf4j-api</artifactId>
  73. <version>${slf4j.version}</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.slf4j</groupId>
  77. <artifactId>slf4j-log4j12</artifactId>
  78. <version>${slf4j.version}</version>
  79. <scope>provided</scope>
  80. </dependency>
  81. <!--spring -->
  82. <dependency>
  83. <groupId>org.springframework</groupId>
  84. <artifactId>spring-web</artifactId>
  85. <version>${spring.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.springframework</groupId>
  89. <artifactId>spring-webmvc</artifactId>
  90. <version>${spring.version}</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.springframework</groupId>
  94. <artifactId>spring-core</artifactId>
  95. <version>${spring.version}</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>javax.servlet</groupId>
  99. <artifactId>servlet-api</artifactId>
  100. <version>2.5</version>
  101. <scope>provided</scope>
  102. </dependency>
  103. <!-- test -->
  104. <dependency>
  105. <groupId>junit</groupId>
  106. <artifactId>junit</artifactId>
  107. <version>${junit.version}</version>
  108. <scope>test</scope>
  109. </dependency>
  110. <!-- 模块版本 -->
  111. <dependency>
  112. <groupId>org.jeecgframework</groupId>
  113. <artifactId>easypoi-base</artifactId>
  114. <version>2.0.1</version>
  115. </dependency>
  116. </dependencies>
  117. </dependencyManagement>
  118. <distributionManagement>
  119. <repository>
  120. <id>postaop-pay-platform-release</id>
  121. <url>http://192.168.0.99:8081/nexus/content/repositories/postaop-common-release/</url>
  122. </repository>
  123. <snapshotRepository>
  124. <id>postaop-pay-platform-snapshot</id>
  125. <url>http://192.168.0.99:8081/nexus/content/repositoriespostaop-common-snapshot/</url>
  126. </snapshotRepository>
  127. </distributionManagement>
  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. </plugins>
  141. </build>
  142. </project>