Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

poi-examples.pom 2.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. <?xml version="1.0"?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one or more
  4. contributor license agreements. See the NOTICE file distributed with
  5. this work for additional information regarding copyright ownership.
  6. The ASF licenses this file to You under the Apache License, Version 2.0
  7. (the "License"); you may not use this file except in compliance with
  8. the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. -->
  16. <project xmlns="http://maven.apache.org/POM/4.0.0"
  17. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  18. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  19. <modelVersion>4.0.0</modelVersion>
  20. <groupId>org.apache.poi</groupId>
  21. <artifactId>poi-examples</artifactId>
  22. <version>@VERSION@</version>
  23. <packaging>jar</packaging>
  24. <name>Apache POI</name>
  25. <url>http://poi.apache.org/</url>
  26. <description>Apache POI Examples</description>
  27. <mailingLists>
  28. <mailingList>
  29. <name>POI Users List</name>
  30. <subscribe>user-subscribe@poi.apache.org</subscribe>
  31. <unsubscribe>user-unsubscribe@poi.apache.org</unsubscribe>
  32. <archive>http://mail-archives.apache.org/mod_mbox/poi-user/</archive>
  33. </mailingList>
  34. <mailingList>
  35. <name>POI Developer List</name>
  36. <subscribe>dev-subscribe@poi.apache.org</subscribe>
  37. <unsubscribe>dev-unsubscribe@poi.apache.org</unsubscribe>
  38. <archive>http://mail-archives.apache.org/mod_mbox/poi-dev/</archive>
  39. </mailingList>
  40. </mailingLists>
  41. <licenses>
  42. <license>
  43. <name>Apache License, Version 2.0</name>
  44. <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
  45. </license>
  46. </licenses>
  47. <organization>
  48. <name>Apache Software Foundation</name>
  49. <url>http://www.apache.org/</url>
  50. </organization>
  51. <dependencies>
  52. <dependency>
  53. <groupId>org.apache.poi</groupId>
  54. <artifactId>poi</artifactId>
  55. <version>@VERSION@</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.poi</groupId>
  59. <artifactId>poi-scratchpad</artifactId>
  60. <version>@VERSION@</version>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.poi</groupId>
  64. <artifactId>poi-ooxml</artifactId>
  65. <version>@VERSION@</version>
  66. </dependency>
  67. </dependencies>
  68. </project>