odttopdf
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.github.javadev</groupId> <artifactId>odttopdf</artifactId> <version>1.1</version> </dependency>
<?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> <groupId>com.github.javadev</groupId> <artifactId>odttopdf</artifactId> <packaging>jar</packaging> <version>1.1</version> <name>command line utility to convert odt files to the pdf files</name> <description>The command line utility to convert odt files to the pdf files</description> <url>https://github.com/javadev/odt-to-pdf-converter</url> <developers> <developer> <name>Valentyn Kolesnikov</name> </developer> </developers> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git://github.com/javadev/odt-to-pdf-converter.git</connection> <developerConnection>scm:git:git://github.com/javadev/odt-to-pdf-converter.git</developerConnection> <url>https://github.com/javadev/odt-to-pdf-converter</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <ciManagement> <system>Travis CI</system> <url>https://travis-ci.org/javadev/odt-to-pdf-converter</url> </ciManagement> <issueManagement> <system>GitHub Issues</system> <url>https://github.com/javadev/odt-to-pdf-converter/issues</url> </issueManagement> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.7.0</version> <configuration> <source>1.6</source> <target>1.6</target> <encoding>UTF-8</encoding> <excludes> <exclude>com/github/odttopdf/OdtToPdfConverterApp.java</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.4</version> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <mainClass>com.github.odttopdf.OdtToPdfConverter</mainClass> </manifest> </archive> <includes> <include>com/github/odttopdf/OdtToPdfConverter.*</include> <include>com/github/odttopdf/OdtToPdfConverter*.*</include> <include>com/github/odttopdf/Log*.*</include> <include>com/github/odttopdf/MergeXml*.*</include> </includes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> <goal>test-jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>fr.opensagres.xdocreport</groupId> <artifactId>fr.opensagres.xdocreport.document.odt</artifactId> <version>2.0.1</version> </dependency> <dependency> <groupId>fr.opensagres.xdocreport</groupId> <artifactId>fr.opensagres.xdocreport.template.velocity</artifactId> <version>2.0.1</version> </dependency> <dependency> <groupId>fr.opensagres.xdocreport</groupId> <artifactId>fr.opensagres.xdocreport.converter.odt.odfdom</artifactId> <version>2.0.1</version> <exclusions> <exclusion> <groupId>bouncycastle</groupId> <artifactId>bcmail-jdk14</artifactId> </exclusion> <exclusion> <groupId>bouncycastle</groupId> <artifactId>bcprov-jdk14</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>com.mycila.xmltool</groupId> <artifactId>xmltool</artifactId> <version>3.3</version> </dependency> </dependencies> </project>