<?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
    <groupId>org.apache.odftoolkit</groupId>
    <artifactId>odftoolkit</artifactId>
    <version>0.5-incubating</version>
    </parent>
  
    <artifactId>odfdom-java</artifactId>
    <version>0.8.8-incubating</version>
    <packaging>jar</packaging>

    <dependencies>
        <dependency>
          <groupId>${project.groupId}</groupId>
          <artifactId>taglets</artifactId>
          <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>xerces</groupId>
            <artifactId>xercesImpl</artifactId>
            <version>2.9.1</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.8.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.build.timestamp.format>yyyy-MM-dd'T'HH:mm:ss</maven.build.timestamp.format>
    </properties>

    <!-- Build Settings -->
    <build>
        <extensions>
            <extension>
                <groupId>org.apache.maven.wagon</groupId>
                <artifactId>wagon-webdav-jackrabbit</artifactId>
                <version>1.0-beta-7</version>
            </extension>
        </extensions>
        <plugins>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.5</source>
                    <target>1.5</target>
                    <meminitial>512m</meminitial>
                    <maxmem>1024m</maxmem>
                    <showDeprecation>true</showDeprecation>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>2.3.1</version>
                <configuration>
                    <archive>
                        <index>true</index>
                        <manifest>
                            <mainClass>org.odftoolkit.odfdom.JarManifest</mainClass>
                        </manifest>
                        <manifestEntries>
                            <version>${project.version}</version>
                        </manifestEntries>
                        <manifestSections>
                            <manifestSection>
                                <name>ODFDOM</name>
                                <manifestEntries>
                                    <ODFDOM-Name>odfdom</ODFDOM-Name>
                                    <ODFDOM-Version>${project.version}</ODFDOM-Version>
                                    <ODFDOM-Website>http://incubator.apache.org/odftoolkit/odfdom/index.html</ODFDOM-Website>
                                    <ODFDOM-Built-Date>${build.timestamp}</ODFDOM-Built-Date>
                                    <ODFDOM-Supported-Odf-Version>1.2</ODFDOM-Supported-Odf-Version>
                                </manifestEntries>
                            </manifestSection>
                        </manifestSections>
                    </archive>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.1</version>
                <configuration>
                    <!-- Workaround for http://jira.codehaus.org/browse/MGPG-9 -->
                    <mavenExecutorId>forked-path</mavenExecutorId>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <!-- Explizit version required for fix on systemPropertyVariables -->
                <version>2.6</version>
                <configuration>
                    <systemPropertyVariables>
                        <odfdom.version>${project.version}</odfdom.version>
                        <odfdom.timestamp>${build.timestamp}</odfdom.timestamp>
                        <org.odftoolkit.odfdom.validation>org.odftoolkit.odfdom.pkg.DefaultErrorHandler</org.odftoolkit.odfdom.validation>
                    </systemPropertyVariables>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.7</version>
                <configuration>
                    <doctitle>ODFDOM</doctitle>
                    <minmemory>1024m</minmemory>
                    <maxmemory>1024m</maxmemory>
                    <links>
                        <link>http://download.oracle.com/javase/6/docs/api/</link>
                        <link>http://xerces.apache.org/xerces-j/apiDocs/</link>
                        <link>http://simple.odftoolkit.org/javadoc/</link>
                    </links>
                    <splitindex>true</splitindex>
                    <windowtitle>ODFDOM API v${project.version} - http://incubator.apache.org/odftoolkit/</windowtitle>
                    <taglets>
                        <taglet>
                            <tagletClass>org.odftoolkit.odfdom.taglet.OdfElementTaglet</tagletClass>
                        </taglet>
                        <taglet>
                            <tagletClass>org.odftoolkit.odfdom.taglet.OdfAttributeTaglet</tagletClass>
                        </taglet>
                        <taglet>
                            <tagletClass>org.odftoolkit.odfdom.taglet.OdfDatatypeTaglet</tagletClass>
                        </taglet>
                    </taglets>
                    <tagletArtifact>
                        <groupId>${project.groupId}</groupId>
                        <artifactId>taglets</artifactId>
                        <version>${project.version}</version>
                    </tagletArtifact>
                </configuration>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.1.2</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
                <configuration>
                    <descriptorRefs>
                        <descriptorRef>jar-with-dependencies</descriptorRef>
                    </descriptorRefs>
                </configuration>
                <executions>
                    <execution>
                        <id>single</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.rat</groupId>
                <artifactId>apache-rat-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>src/main/resources/**</exclude>
                        <exclude>src/test/resources/**</exclude>
                        <exclude>src/main/javadoc/doc-files/OpenDocument-v1.2-cd05-part1.html</exclude>
                        <exclude>src/codegen/resources/dom/*.rng</exclude>
                        <exclude>src/codegen/resources/pkg/*.rng</exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>
    <reporting>
        <plugins>
            <!-- Code Coverage Testing generated by Cobertura -->
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>cobertura-maven-plugin</artifactId>
                <version>2.4</version>
                <configuration>
                    <instrumentation>
                        <excludes>
                            <exclude>org/odftoolkit/**/*Test.class</exclude>
                        </excludes>
                    </instrumentation>
                </configuration>
            </plugin>
            
            <!-- Reporting integration test results -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-failsafe-plugin</artifactId>
                <version>2.5</version>
                <reportSets>
                    <reportSet>
                        <id>integration-tests</id>
                        <reports>
                            <report>report-only</report>
                        </reports>
                        <configuration>
                            <outputName>failsafe-report</outputName>
                        </configuration>
                    </reportSet>
                </reportSets>
            </plugin>
        </plugins>
    </reporting>

    <!-- More Project Information -->
    <name>ODFDOM</name>
    <description>
        ODFDOM is an OpenDocument Format (ODF) framework. Its purpose
        is to provide an easy common way to create, access and
        manipulate ODF files, without requiring detailed knowledge of
        the ODF specification. It is designed to provide the ODF
        developer community with an easy lightwork programming API
        portable to any object-oriented language.

        The current reference implementation is written in Java.
    </description>
    <url>http://incubator.apache.org/odftoolkit/odfdom/index.html</url>
    <inceptionYear>2008</inceptionYear>
    
    <licenses>
        <license>
            <name>Apache 2</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
        </license>
    </licenses>
    <organization>
        <name>The Apache Software Foundation</name>
        <url>http://www.apache.org/</url>
    </organization>
    <developers>
        <developer>
            <id>svanteschubert</id>
            <name>Svante</name>
            <email>svanteschubert AT apache.org</email>
            <url>http://odftoolkit.org/people/7-Svante-Schubert</url>
            <organization>Individual</organization>
            <roles>
                <role>ODFDOM working group chair</role>
                <role>architect</role>
                <role>developer</role>
            </roles>
            <timezone>+1</timezone>
            <properties>
                <picUrl>http://asset-1.odftoolkit.org/attachments/images/person/SvanteSchubert-2_small.jpg</picUrl>
            </properties>
        </developer>
        <developer>
            <id>devinhan</id>
            <name>Han Biao</name>
            <email>devinhan AT apache.org</email>
            <organization>IBM</organization>
            <organizationUrl>http://www.ibm.com/</organizationUrl>
            <roles>
                <role>developer</role>
            </roles>
            <timezone>+8</timezone>
        </developer>
        <developer>
            <id>daisyguo</id>
            <name>Ying Chun Guo</name>
            <email>daisyguo AT apache.org</email>
            <url>http://odftoolkit.org/people/274-Ying-Chun-Guo</url>
            <organization>IBM</organization>
            <organizationUrl>http://www.ibm.com/</organizationUrl>
            <roles>
                <role>developer</role>
            </roles>
            <timezone>+8</timezone>
            <properties>
                <picUrl>http://asset-2.odftoolkit.org/attachments/images/person/Daisy.jpg</picUrl>
            </properties>
        </developer>
        <developer>
            <id>weihuaWang</id>
            <name>Wei Hua Wang</name>
            <email>weihuaWang AT odftoolkit.org</email>
            <url>http://odftoolkit.org/people/297-weihuaWang</url>
            <organization>IBM</organization>
            <organizationUrl>http://www.ibm.com/</organizationUrl>
            <roles>
                <role>developer</role>
            </roles>
            <timezone>+8</timezone>
        </developer>
        <developer>
            <id>FrankMeies</id>
            <name>Frank</name>
            <email>FrankMeies AT odftoolkit.org</email>
            <url>http://odftoolkit.org/people/332-FrankMeies</url>
            <organization>Oracle Inc.</organization>
            <organizationUrl>http://www.oracle.com/</organizationUrl>
            <roles>
                <role>developer</role>
            </roles>
            <timezone>+1</timezone>
            <properties>
                <picUrl>http://asset-1.odftoolkit.org/attachments/images/person/FrankMeies.jpg</picUrl>
            </properties>
        </developer>
        <developer>
            <id>lars_behrmann</id>
            <name>Lars</name>
            <email>lars_behrmann AT odftoolkit.org</email>
            <url>http://odftoolkit.org/people/6-Lars-Behrmann</url>
            <organization>Oracle Inc.</organization>
            <organizationUrl>http://www.oracle.com/</organizationUrl>
            <roles>
                <role>developer</role>
            </roles>
            <timezone>+1</timezone>
            <properties>
                <picUrl>http://asset-2.odftoolkit.org/attachments/images/person/lars_behrmann_small.png</picUrl>
            </properties>
        </developer>
        <developer>
            <id>steffeng</id>
            <name>Steffen</name>
            <email>steffeng AT odftoolkit.org</email>
            <url>http://odftoolkit.org/people/418-steffeng</url>
            <organization>Oracle Inc.</organization>
            <organizationUrl>http://www.oracle.com/</organizationUrl>
            <roles>
                <role>developer</role>
            </roles>
            <timezone>+1</timezone>
        </developer>
        <developer>
            <id>hans-peter</id>
            <name>Hans-Peter</name>
            <email>hans-peter AT odftoolkit.org</email>
            <url>http://odftoolkit.org/people/463-hans-peter</url>
            <organization>Oracle Inc.</organization>
            <organizationUrl>http://www.oracle.com/</organizationUrl>
            <roles>
                <role>developer</role>
            </roles>
            <timezone>+1</timezone>
        </developer>
        <developer>
            <id>bei</id>
            <name>Bernd</name>
            <email>bei AT odftoolkit.org</email>
            <url>http://odftoolkit.org/people/16-Bernd-Eilers</url>
            <organization>Oracle Inc.</organization>
            <organizationUrl>http://www.oracle.com/</organizationUrl>
            <roles>
                <role>developer</role>
            </roles>
            <timezone>+1</timezone>
            <properties>
                <picUrl>http://asset-0.odftoolkit.org/attachments/images/person/bei.JPG</picUrl>
            </properties>
        </developer>
        <developer>
            <id>mst</id>
            <name>Michael</name>
            <email>mst AT odftoolkit.org</email>
            <url>http://odftoolkit.org/people/768-Michael-Stahl</url>
            <organization>Oracle Inc.</organization>
            <organizationUrl>http://www.oracle.com/</organizationUrl>
            <roles>
                <role>developer</role>
            </roles>
            <timezone>+1</timezone>
        </developer>
        <developer>
            <id>clippka</id>
            <name>Christian</name>
            <email>clippka AT odftoolkit.org</email>
            <url>http://odftoolkit.org/people/259-clippka</url>
            <organization>Oracle Inc.</organization>
            <organizationUrl>http://www.oracle.com/</organizationUrl>
            <roles>
                <role>developer</role>
            </roles>
            <timezone>+1</timezone>
        </developer>
    </developers>

    <!-- Environment Settings -->
    <issueManagement>
        <system>JIRA</system>
        <url>https://issues.apache.org/jira/browse/ODFTOOLKIT</url>
    </issueManagement>
    <mailingLists>
        <mailingList>
            <name>User List</name>
            <post>odf-users@incubator.apache.org</post>
            <subscribe>odf-users-subscribe@incubator.apache.org</subscribe>
            <unsubscribe>odf-users-unsubscribe@incubator.apache.org</unsubscribe>
            <archive>http://mail-archives.apache.org/mod_mbox/incubator-odf-users/</archive>
        </mailingList>
        <mailingList>
            <name>Developer List</name>
            <post>odf-dev@incubator.apache.org</post>
            <subscribe>odf-dev-subscribe@incubator.apache.org</subscribe>
            <unsubscribe>odf-dev-unsubscribe@incubator.apache.org</unsubscribe>
            <archive>http://mail-archives.apache.org/mod_mbox/incubator-odf-dev/</archive>
        </mailingList>
        <mailingList>
            <name>Commits</name>
            <subscribe>odf-commits-subscribe@incubator.apache.org</subscribe>
            <unsubscribe>odf-commmits-unsubscribe@incubator.apache.org</unsubscribe>
            <archive>http://mail-archives.apache.org/mod_mbox/incubator-odf-commits/</archive>
        </mailingList>
    </mailingLists>
    <scm>
        <connection>scm:svn:http://svn.apache.org/repos/asf/incubator/odf/tags/0.5-incubating-rc7/odfdom</connection>
        <developerConnection>scm:svn:https://svn.apache.org/repos/asf/incubator/odf/tags/0.5-incubating-rc7/odfdom</developerConnection>
        <url>http://svn.apache.org/viewvc/incubator/odf/tags/0.5-incubating-rc7/odfdom</url>
    </scm>
    <!-- Upload of JAVA DOC for SNAPSHOOTs
    <distributionManagement>
        <site>
            <id>odfdom</id>
            <name>ODFDOM Java Toolkit Project</name>
            <url>dav:https://odftoolkit.org/website/odfdom/${project.version}</url>
        </site>
    </distributionManagement> -->
    <profiles>
        <profile>
            <id>codegen</id>
            <build>
                <plugins>
                    <plugin>
                          <groupId>org.codehaus.mojo</groupId>
                          <artifactId>wagon-maven-plugin</artifactId>
                          <version>1.0-beta-3</version>
                          <executions>
                              <execution>
                                  <id>download-odf-schema-v1.2</id>
                                  <phase>validate</phase>
                                  <goals>
                                    <goal>download-single</goal>
                                  </goals>
                                  <configuration>
                                    <url>dav:http://docs.oasis-open.org/office/v1.2</url>
                                    <fromFile>cs01/OpenDocument-v1.2-cs01-schema.rng</fromFile>
                                    <toDir>${project.build.directory}/odf-schemas</toDir>
                                  </configuration>
                            </execution>
                            <execution>
                                  <id>download-odf-manifest-schema-v1.2</id>
                                  <phase>validate</phase>
                                  <goals>
                                    <goal>download-single</goal>
                                  </goals>
                                  <configuration>
                                    <url>dav:http://docs.oasis-open.org/office/v1.2</url>
                                    <fromFile>cs01/OpenDocument-v1.2-cs01-manifest-schema.rng</fromFile>
                                    <toDir>${project.build.directory}/odf-schemas</toDir>
                                  </configuration>
                            </execution>
                            <execution>
                                  <id>download-odf-schema-v1.1</id>
                                  <phase>validate</phase>
                                  <goals>
                                    <goal>download-single</goal>
                                  </goals>
                                  <configuration>
                                    <url>dav:http://docs.oasis-open.org/office/v1.1</url>
                                    <fromFile>OS/OpenDocument-schema-v1.1.rng</fromFile>
                                    <toDir>${project.build.directory}/odf-schemas</toDir>
                                  </configuration>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <groupId>${project.groupId}</groupId>
                        <artifactId>schema2template-maven-plugin</artifactId>
                        <version>${project.version}</version>
                        <executions>
                            <execution>
                                <id>dom</id>
                                <phase>generate-sources</phase>
                                <goals>
                                    <goal>codegen</goal>
                                </goals>
                                <!-- DOM LAYER CONFIGURATION -->
                                <configuration>
                                    <targetRoot>${basedir}/src/main/java/</targetRoot>
                                    <resourceRoot>${basedir}/src/codegen/resources/dom/template</resourceRoot>
                                    <odf12SchemaFile>${project.build.directory}/odf-schemas/OpenDocument-v1.2-cs01-schema.rng</odf12SchemaFile>
                                    <odf11SchemaFile>${project.build.directory}/odf-schemas/OpenDocument-schema-v1.1.rng</odf11SchemaFile>
                                    <configFile>${basedir}/src/codegen/resources/dom/config.xml</configFile>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
        <!--
        <profile>
            <id>codegen-pkg</id>
            <activation>
              <activeByDefault>true</activeByDefault>
            </activation>
            <build>
                <defaultGoal>install</defaultGoal>
                <plugins>
                    <plugin>
                        <groupId>org.odftoolkit</groupId>
                        <artifactId>maven-codegen-plugin</artifactId>
                        <version>0.8-SNAPSHOT</version>
                        <executions>
                            <execution>
                                <id>pkg</id>
                                <phase>generate-sources</phase>
                                <goals>
                                    <goal>codegen</goal>
                                </goals>
                                <configuration>
                                    <sourceRoot>${basedir}/src/main/java</sourceRoot>
                                    <schemaFile>${basedir}/src/codegen/resources/pkg/OpenDocument-manifest-schema-v1.2-draft7.rng</schemaFile>
                                    <configFile>${basedir}/src/codegen/resources/pkg/config.xml</configFile>
                                    <templateFile>${basedir}/src/codegen/resources/pkg/javacodetemplate.xml</templateFile>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
        -->
        <profile>
            <id>integration-test</id>
            <activation>
                <property>
                    <name>integration-test</name>
                </property>
            </activation>
            <build>
                <defaultGoal>verify</defaultGoal>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-failsafe-plugin</artifactId>
                        <version>2.5</version>
                        <executions>
                            <execution>
                                <id>failsafe-it</id>
                                <phase>integration-test</phase>
                                <goals>
                                    <goal>integration-test</goal>
                                    <goal>verify</goal>
                                </goals>
                                <configuration>
                                    <classesDirectory>${basedir}/target/odfdom*.jar</classesDirectory>
                                    <systemPropertyVariables>
                                        <testresourcefolder>performance</testresourcefolder>
                                        <executetimes>1</executetimes>
                                        <testflag>test</testflag>
                                    </systemPropertyVariables>
                                </configuration>
                            </execution>
                        </executions>
                    </plugin>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-surefire-plugin</artifactId>
                        <!-- Explizit version required for fix on systemPropertyVariables -->
                        <version>2.6</version>
                        <configuration>
                            <systemPropertyVariables>
                                <odfdom.version>${project.version}</odfdom.version>
                                <odfdom.timestamp>${build.timestamp}</odfdom.timestamp>
                                <org.odftoolkit.odfdom.validation>true</org.odftoolkit.odfdom.validation>
                            </systemPropertyVariables>
                            <skip>true</skip>
                        </configuration>
                    </plugin>
                </plugins>
            </build>
        </profile>
        <!-- Profile for deploying to the Sonatype repository, which
         requires GPG signatures 
         see
         https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide
         https://docs.sonatype.org/display/Repository/How+To+Generate+PGP+Signatures+With+Maven
         https://issues.sonatype.org/browse/OSSRH-960
         -->
        <profile>
            <id>release-sign-artifacts</id>
            <activation>
                <property>
                    <name>performRelease</name>
                    <value>true</value>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <version>1.1</version>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
            <!-- <distributionManagement>
                <site>
                    <id>odfdom</id>
                    <name>ODFDOM Java Toolkit Project</name>
                    <url>dav:https://odftoolkit.org/website/odfdom/${project.version}/odfdom</url>
                </site>
            </distributionManagement> -->
        </profile>
    </profiles>
</project>
