Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  4. http://maven.apache.org/maven-v4_0_0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.apache.poi</groupId>
  7. <artifactId>poi-parent</artifactId>
  8. <packaging>pom</packaging>
  9. <version>3.11-SNAPSHOT</version>
  10. <name>Apache POI - the Java API for Microsoft Documents</name>
  11. <description>Maven build of Apache POI for Sonar checks</description>
  12. <url>http://poi.apache.org/</url>
  13. <mailingLists>
  14. <mailingList>
  15. <name>POI Users List</name>
  16. <subscribe>user-subscribe@poi.apache.org</subscribe>
  17. <unsubscribe>user-unsubscribe@poi.apache.org</unsubscribe>
  18. <archive>http://mail-archives.apache.org/mod_mbox/poi-user/</archive>
  19. </mailingList>
  20. <mailingList>
  21. <name>POI Developer List</name>
  22. <subscribe>dev-subscribe@poi.apache.org</subscribe>
  23. <unsubscribe>dev-unsubscribe@poi.apache.org</unsubscribe>
  24. <archive>http://mail-archives.apache.org/mod_mbox/poi-dev/</archive>
  25. </mailingList>
  26. </mailingLists>
  27. <licenses>
  28. <license>
  29. <name>The Apache Software License, Version 2.0</name>
  30. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  31. </license>
  32. </licenses>
  33. <organization>
  34. <name>Apache Software Foundation</name>
  35. <url>http://www.apache.org/</url>
  36. </organization>
  37. <issueManagement>
  38. <system>bugzilla</system>
  39. <url>https://issues.apache.org/bugzilla/</url>
  40. </issueManagement>
  41. <scm>
  42. <connection>scm:svn:http://svn.apache.org/repos/asf/poi/trunk</connection>
  43. <developerConnection>scm:svn:https://svn.apache.org/repos/asf/poi/trunk</developerConnection>
  44. <url>http://svn.apache.org/viewvc/poi</url>
  45. </scm>
  46. <modules>
  47. <module>main</module>
  48. <module>ooxml-schema</module>
  49. <module>ooxml-schema-encryption</module>
  50. <module>ooxml</module>
  51. <module>scratchpad</module>
  52. <module>excelant</module>
  53. <module>examples</module>
  54. </modules>
  55. <properties>
  56. <project.build.sourceEncoding>ASCII</project.build.sourceEncoding>
  57. </properties>
  58. <build>
  59. <pluginManagement>
  60. <plugins>
  61. <plugin>
  62. <groupId>org.apache.maven.plugins</groupId>
  63. <artifactId>maven-compiler-plugin</artifactId>
  64. <version>3.1</version>
  65. <configuration>
  66. <source>1.6</source>
  67. <target>1.6</target>
  68. </configuration>
  69. </plugin>
  70. </plugins>
  71. </pluginManagement>
  72. <plugins>
  73. <plugin>
  74. <groupId>org.apache.maven.plugins</groupId>
  75. <artifactId>maven-surefire-plugin</artifactId>
  76. <version>2.16</version>
  77. <dependencies>
  78. <dependency>
  79. <groupId>org.apache.maven.surefire</groupId>
  80. <artifactId>surefire-junit47</artifactId>
  81. <version>2.16</version>
  82. </dependency>
  83. </dependencies>
  84. <configuration>
  85. <systemPropertyVariables>
  86. <POI.testdata.path>../../test-data</POI.testdata.path>
  87. <java.awt.headless>true</java.awt.headless>
  88. <org.apache.poi.util.POILogger>org.apache.poi.util.NullLogger</org.apache.poi.util.POILogger>
  89. </systemPropertyVariables>
  90. <argLine>-Duser.language=en -Duser.country=US</argLine>
  91. <excludes>
  92. <exclude>**/All*Tests.java</exclude>
  93. <exclude>**/TestUnfixedBugs.java</exclude>
  94. <exclude>**/TestcaseRecordInputStream.java</exclude>
  95. <exclude>**/POITestCase.java</exclude>
  96. <!-- TODO: error about no public construct, seems to run with JUnit 3.8... -->
  97. <exclude>**/TestWordToConverterSuite*.java</exclude>
  98. <exclude>**/TestExcelConverterSuite*.java</exclude>
  99. </excludes>
  100. <!--test>TestPPTX2PNG</test-->
  101. <!--parallel>both</parallel>
  102. <threadCount>10</threadCount-->
  103. </configuration>
  104. </plugin>
  105. </plugins>
  106. </build>
  107. <dependencies>
  108. <dependency>
  109. <groupId>junit</groupId>
  110. <artifactId>junit</artifactId>
  111. <version>4.11</version>
  112. <scope>test</scope>
  113. </dependency>
  114. </dependencies>
  115. </project>