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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  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. <parent>
  7. <groupId>org.apache.poi</groupId>
  8. <artifactId>poi-parent</artifactId>
  9. <version>5.0.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>integration-test</artifactId>
  12. <packaging>jar</packaging>
  13. <name>Apache POI integration test</name>
  14. <build>
  15. <plugins>
  16. <!-- copy sources, resources and tests in place as otherwise Sonar does not pick them up correctly! -->
  17. <plugin>
  18. <artifactId>maven-resources-plugin</artifactId>
  19. <version>${maven.plugin.resources.version}</version>
  20. <executions>
  21. <execution>
  22. <id>copy-tests</id>
  23. <phase>generate-test-sources</phase>
  24. <goals>
  25. <goal>copy-resources</goal>
  26. </goals>
  27. <configuration>
  28. <outputDirectory>${basedir}/src/test/java</outputDirectory>
  29. <resources>
  30. <resource>
  31. <directory>../../src/integrationtest</directory>
  32. </resource>
  33. </resources>
  34. </configuration>
  35. </execution>
  36. </executions>
  37. </plugin>
  38. <!-- clean copied sources afterwards -->
  39. <plugin>
  40. <artifactId>maven-clean-plugin</artifactId>
  41. <version>${maven.plugin.clean.version}</version>
  42. <configuration>
  43. <filesets>
  44. <fileset>
  45. <directory>src</directory>
  46. <followSymlinks>false</followSymlinks>
  47. </fileset>
  48. <fileset>
  49. <directory>build</directory>
  50. <followSymlinks>false</followSymlinks>
  51. </fileset>
  52. </filesets>
  53. </configuration>
  54. </plugin>
  55. <!-- set jvm parameters for surefire plugin -->
  56. <plugin>
  57. <groupId>org.apache.maven.plugins</groupId>
  58. <artifactId>maven-surefire-plugin</artifactId>
  59. <version>${maven.plugin.surefire.version}</version>
  60. <configuration>
  61. <argLine>@{argLine} -Duser.language=en -Duser.country=US -Xmx1024m -Djava.io.tmpdir=${basedir}/target/tmp -XX:-OmitStackTraceInFastThrow</argLine>
  62. <workingDirectory>../..</workingDirectory>
  63. </configuration>
  64. </plugin>
  65. </plugins>
  66. </build>
  67. <dependencies>
  68. <dependency>
  69. <groupId>${project.groupId}</groupId>
  70. <artifactId>poi-ooxml</artifactId>
  71. <version>${project.version}</version>
  72. </dependency>
  73. <dependency>
  74. <groupId>${project.groupId}</groupId>
  75. <artifactId>poi-scratchpad</artifactId>
  76. <version>${project.version}</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>${project.groupId}</groupId>
  80. <artifactId>poi-examples</artifactId>
  81. <version>${project.version}</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>junit</groupId>
  85. <artifactId>junit</artifactId>
  86. <version>${junit.version}</version>
  87. <scope>test</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.reflections</groupId>
  91. <artifactId>reflections</artifactId>
  92. <version>0.9.11</version>
  93. <scope>test</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.openjdk.jmh</groupId>
  97. <artifactId>jmh-core</artifactId>
  98. <version>1.19</version>
  99. <scope>test</scope>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.apache.ant</groupId>
  103. <artifactId>ant</artifactId>
  104. <version>1.10.7</version>
  105. <scope>test</scope>
  106. </dependency>
  107. </dependencies>
  108. </project>