fastods-examples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.github.jferard</groupId>
<artifactId>fastods-examples</artifactId>
<version>0.8.1</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
~ FastODS - A very fast and lightweight (no dependency) library for creating ODS
~ (Open Document Spreadsheet, mainly for Calc) files in Java.
~ It's a Martin Schulz's SimpleODS fork
~ Copyright (C) 2016-2021 J. Férard <https://github.com/jferard>
~ SimpleODS - A lightweight java library to create simple OpenOffice spreadsheets
~ Copyright (C) 2008-2013 Martin Schulz <mtschulz at users.sourceforge.net>
~
~ This file is part of FastODS.
~
~ FastODS is free software: you can redistribute it and/or modify it under the
~ terms of the GNU General Public License as published by the Free Software
~ Foundation, either version 3 of the License, or (at your option) any later
~ version.
~
~ FastODS is distributed in the hope that it will be useful, but WITHOUT ANY
~ WARRANTY; without even the implied warranty of MERCHANTABILITY or
~ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
~ for more details.
~
~ You should have received a copy of the GNU General Public License along with
~ this program. If not, see <http://www.gnu.org/licenses />.
-->
<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.github.jferard</groupId>
<artifactId>fastods-parent</artifactId>
<version>0.8.1</version>
</parent>
<artifactId>fastods-examples</artifactId>
<version>0.8.1</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jre>1.6</jre>
<powermock.version>1.7.3</powermock.version>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
</properties>
<dependencies>
<dependency>
<groupId>com.github.jferard</groupId>
<artifactId>fastods</artifactId>
<version>0.8.1</version>
</dependency>
<dependency>
<groupId>com.github.jferard</groupId>
<artifactId>fastods-crypto</artifactId>
<version>0.8.1</version>
</dependency>
<dependency>
<groupId>org.odftoolkit</groupId>
<artifactId>odfvalidator</artifactId>
<classifier>jar-with-dependencies</classifier> <!-- grr -->
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.199</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.1</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>ant</groupId>
<artifactId>ant</artifactId>
<version>1.7.0</version>
<scope>compile</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.googlecode.maven-download-plugin</groupId>
<artifactId>download-maven-plugin</artifactId>
<version>1.6.7</version>
<executions>
<execution>
<id>load-dsig-schema</id>
<phase>pre-integration-test</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>
http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-dsig-schema.rng
<!-- https://docs.oasis-open.org/office/OpenDocument/v1.3/os/schemas/OpenDocument-v1.3-dsig-schema.rng -->
</url>
<outputDirectory>${project.build.directory}/schemas</outputDirectory>
</configuration>
</execution>
<execution>
<id>load-schema</id>
<phase>pre-integration-test</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>
http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-schema.rng
<!-- https://docs.oasis-open.org/office/OpenDocument/v1.3/os/schemas/OpenDocument-v1.3-schema.rng -->
</url>
<outputDirectory>${project.build.directory}/schemas</outputDirectory>
</configuration>
</execution>
<execution>
<id>load-manifest-schema</id>
<phase>pre-integration-test</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>
http://docs.oasis-open.org/office/v1.2/os/OpenDocument-v1.2-os-manifest-schema.rng
<!-- https://docs.oasis-open.org/office/OpenDocument/v1.3/os/schemas/OpenDocument-v1.3-manifest-schema.rng -->
</url>
<outputDirectory>${project.build.directory}/schemas</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>