kiwiwings

Sample pom.xml for a POI project

Dec 13th, 2015
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.63 KB | None | 0 0
  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  2.     <modelVersion>4.0.0</modelVersion>
  3.     <groupId>de.kiwiwings</groupId>
  4.     <artifactId>poitests</artifactId>
  5.     <version>0.0.1-SNAPSHOT</version>
  6.  
  7.     <properties>
  8.         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  9.         <poi.version>3.13</poi.version>
  10.     </properties>
  11.  
  12.     <dependencies>
  13.         <dependency>
  14.             <groupId>org.apache.poi</groupId>
  15.             <artifactId>poi</artifactId>
  16.             <version>${poi.version}</version>
  17.         </dependency>
  18.         <dependency>
  19.             <groupId>org.apache.poi</groupId>
  20.             <artifactId>poi-ooxml</artifactId>
  21.             <version>${poi.version}</version>
  22.         </dependency>
  23.         <dependency>
  24.             <groupId>org.apache.poi</groupId>
  25.             <artifactId>poi-scratchpad</artifactId>
  26.             <version>${poi.version}</version>
  27.         </dependency>
  28.         <dependency>
  29.             <groupId>org.apache.poi</groupId>
  30.             <artifactId>poi-ooxml-schemas</artifactId>
  31.             <version>${poi.version}</version>
  32.         </dependency>
  33.         <dependency>
  34.             <groupId>org.apache.xmlbeans</groupId>
  35.             <artifactId>xmlbeans</artifactId>
  36.             <version>2.6.0</version>
  37.         </dependency>
  38.         <dependency>
  39.             <groupId>xalan</groupId>
  40.             <artifactId>xalan</artifactId>
  41.             <version>2.7.2</version>
  42.         </dependency>
  43.     </dependencies>
  44.  
  45. </project>
Advertisement
Add Comment
Please, Sign In to add comment