| 1 | <?xml version="1.0" encoding="UTF-8"?> |
|---|
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
|---|
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
|---|
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 |
|---|
| 5 | http://maven.apache.org/maven-v4_0_0.xsd "> |
|---|
| 6 | |
|---|
| 7 | |
|---|
| 8 | <!-- ====================================================================== --> |
|---|
| 9 | |
|---|
| 10 | <!-- P R O J E C T D E S C R I P T I O N --> |
|---|
| 11 | |
|---|
| 12 | <!-- ====================================================================== --> |
|---|
| 13 | |
|---|
| 14 | <modelVersion>4.0.0</modelVersion> |
|---|
| 15 | <groupId>org.plutext</groupId> |
|---|
| 16 | <artifactId>docx4j</artifactId> |
|---|
| 17 | <packaging>jar</packaging> |
|---|
| 18 | <version>0.1-SNAPSHOT</version> |
|---|
| 19 | <name>docx4j</name> |
|---|
| 20 | <description>docx4j is a library which helps you to work with the Office Open XML file |
|---|
| 21 | format, specifically WordprocessingML as used in docx documents.</description> |
|---|
| 22 | <url>http://dev.plutext.org/</url> |
|---|
| 23 | <prerequisites/> |
|---|
| 24 | <inceptionYear>2007</inceptionYear> |
|---|
| 25 | |
|---|
| 26 | <developers> |
|---|
| 27 | <developer> |
|---|
| 28 | <id>jharrop</id> |
|---|
| 29 | <name>Jason Harrop</name> |
|---|
| 30 | <email>jason@plutext.org</email> |
|---|
| 31 | <organization>Plutext</organization> |
|---|
| 32 | <roles> |
|---|
| 33 | <role>Developer</role> |
|---|
| 34 | </roles> |
|---|
| 35 | <timezone>+10</timezone> |
|---|
| 36 | </developer> |
|---|
| 37 | </developers> |
|---|
| 38 | |
|---|
| 39 | <repositories> |
|---|
| 40 | <repository> |
|---|
| 41 | <id>maven2-repository.dev.java.net</id> |
|---|
| 42 | <name>Java.net Maven 2 Repository</name> |
|---|
| 43 | <url>https://maven2-repository.dev.java.net/nonav/repository</url> |
|---|
| 44 | </repository> |
|---|
| 45 | <repository> |
|---|
| 46 | <id>maven-repository.dev.java.net</id> |
|---|
| 47 | <name>Java.net Maven 1 Repository (legacy)</name> |
|---|
| 48 | <url>https://maven-repository.dev.java.net/nonav/repository</url> |
|---|
| 49 | <layout>legacy</layout> |
|---|
| 50 | </repository> |
|---|
| 51 | </repositories> |
|---|
| 52 | |
|---|
| 53 | <dependencies> |
|---|
| 54 | <dependency> |
|---|
| 55 | <groupId>com.sun.xml.bind</groupId> |
|---|
| 56 | <artifactId>jaxb-xjc</artifactId> |
|---|
| 57 | <version>2.1.2</version> |
|---|
| 58 | </dependency> |
|---|
| 59 | <dependency> |
|---|
| 60 | <groupId>com.sun.xml.bind</groupId> |
|---|
| 61 | <artifactId>jaxb-impl</artifactId> |
|---|
| 62 | <version>2.1.2</version> |
|---|
| 63 | </dependency> |
|---|
| 64 | <dependency> |
|---|
| 65 | <groupId>javax.xml.bind</groupId> |
|---|
| 66 | <artifactId>jaxb-api</artifactId> |
|---|
| 67 | <version>2.1</version> |
|---|
| 68 | </dependency> |
|---|
| 69 | <dependency> |
|---|
| 70 | <groupId>xerces</groupId> |
|---|
| 71 | <artifactId>xercesImpl</artifactId> |
|---|
| 72 | <version>2.8.1</version> |
|---|
| 73 | </dependency> |
|---|
| 74 | <dependency> |
|---|
| 75 | <groupId>javax.jcr</groupId> |
|---|
| 76 | <artifactId>jcr</artifactId> |
|---|
| 77 | <version>1.0</version> |
|---|
| 78 | </dependency> |
|---|
| 79 | <dependency> |
|---|
| 80 | <groupId>org.apache.jackrabbit</groupId> |
|---|
| 81 | <artifactId>jackrabbit-api</artifactId> |
|---|
| 82 | <version>1.3</version> |
|---|
| 83 | </dependency> |
|---|
| 84 | <dependency> |
|---|
| 85 | <groupId>org.apache.jackrabbit</groupId> |
|---|
| 86 | <artifactId>jackrabbit-core</artifactId> |
|---|
| 87 | <version>1.3</version> |
|---|
| 88 | </dependency> |
|---|
| 89 | <dependency> |
|---|
| 90 | <groupId>log4j</groupId> |
|---|
| 91 | <artifactId>log4j</artifactId> |
|---|
| 92 | <version>1.2.13</version> |
|---|
| 93 | </dependency> |
|---|
| 94 | <dependency> |
|---|
| 95 | <groupId>dom4j</groupId> |
|---|
| 96 | <artifactId>dom4j</artifactId> |
|---|
| 97 | <version>1.6.1</version> |
|---|
| 98 | </dependency> |
|---|
| 99 | |
|---|
| 100 | </dependencies> |
|---|
| 101 | <build> |
|---|
| 102 | <plugins> |
|---|
| 103 | <plugin> |
|---|
| 104 | <groupId>org.apache.maven.plugins</groupId> |
|---|
| 105 | <artifactId>maven-compiler-plugin</artifactId> |
|---|
| 106 | <configuration> |
|---|
| 107 | <source>1.5</source> |
|---|
| 108 | <target>1.5</target> |
|---|
| 109 | </configuration> |
|---|
| 110 | </plugin> |
|---|
| 111 | </plugins> |
|---|
| 112 | </build> |
|---|
| 113 | </project> |
|---|