pdfreactor-java-client
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.pdfreactor.webservice</groupId> <artifactId>pdfreactor-java-client</artifactId> <version>11.1.0</version> </dependency>
<!-- PDFreactor Web Service Java Client 11.1.0 https://www.pdfreactor.com The MIT License (MIT) Copyright © 2015-2024 RealObjects GmbH Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --> <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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>com.pdfreactor.webservice</groupId> <artifactId>pdfreactor-java-client</artifactId> <version>11.1.0</version> <packaging>jar</packaging> <name>${project.name}</name> <description>A Java client for the PDFreactor Web Service. Compatible with PDFreactor Web Service version 11.x.</description> <url>${project.url}</url> <organization> <name>${project.organization.name}</name> <url>${project.organization.url}</url> </organization> <licenses> <license> <name>MIT License</name> <url>https://opensource.org/license/mit/</url> </license> </licenses> <developers> <developer> <name>${project.organization.name}</name> <email>info@realobjects.com</email> <url>${project.organization.url}</url> <organization>${project.organization.name}</organization> <organizationUrl>${project.organization.url}</organizationUrl> </developer> </developers> <scm> <url>${project.url}</url> </scm> <dependencies> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>2.16.1</version> </dependency> </dependencies> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <maven.build.timestamp.format>yyyy</maven.build.timestamp.format> <current.year>${maven.build.timestamp}</current.year> <project.name>PDFreactor Web Service Java Client</project.name> <project.version.major>11</project.version.major> <project.url>https://www.pdfreactor.com</project.url> <project.organization.name>RealObjects GmbH</project.organization.name> <project.organization.url>https://www.realobjects.com</project.organization.url> <project.inceptionYear>2015</project.inceptionYear> </properties> <build> <plugins> <!-- Export Maven properties to file in JAR --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>properties-maven-plugin</artifactId> <version>1.2.1</version> <executions> <execution> <phase>generate-resources</phase> <goals> <goal>write-project-properties</goal> </goals> <configuration> <outputFile>${project.build.outputDirectory}/app.properties</outputFile> </configuration> </execution> </executions> </plugin> <!-- Process and copy license template --> <plugin> <artifactId>maven-resources-plugin</artifactId> <version>2.6</version> <executions> <execution> <id>copy-resources</id> <phase>validate</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> <outputDirectory>${project.build.outputDirectory}</outputDirectory> <resources> <resource> <targetPath>META-INF</targetPath> <directory>src/license</directory> <filtering>true</filtering> </resource> </resources> </configuration> </execution> </executions> </plugin> <!-- Add license header to Java files --> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>4.3</version> <configuration> <properties> <owner>${project.organization.name}</owner> <email>info@realobjects.com</email> <project.name>${project.name}</project.name> <project.url>${project.url}</project.url> <project.inceptionYear>${project.inceptionYear}</project.inceptionYear> <current.year>${current.year}</current.year> </properties> <licenseSets> <licenseSet> <header>src/license/LICENSE</header> </licenseSet> </licenseSets> </configuration> <executions> <execution> <id>add-licenses</id> <phase>process-sources</phase> <goals> <goal>format</goal> </goals> </execution> </executions> </plugin> <!-- Create sources JAR --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>3.3.0</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Create JavaDoc JAR --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>3.6.3</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>ci</id> <build> <plugins> <!-- Sign artifacts --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.1.0</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <configuration> <keyname>${gpg.keyname}</keyname> <passphrase>${gpg.passphrase}</passphrase> </configuration> </execution> </executions> </plugin> <!-- Publish to Central --> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.4.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <tokenAuth>true</tokenAuth> </configuration> </plugin> </plugins> </build> </profile> <profile> <id>dev</id> <build> <plugins> <!-- Remove license headers from Java files --> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId> <version>4.3</version> <configuration> <properties> <owner>${project.organization.name}</owner> <email>info@realobjects.com</email> <project.name>${project.name}</project.name> <project.url>${project.url}</project.url> <project.inceptionYear>${project.inceptionYear}</project.inceptionYear> <current.year>${current.year}</current.year> </properties> <licenseSets> <licenseSet> <header>src/license/LICENSE</header> </licenseSet> </licenseSets> </configuration> <executions> <execution> <id>remove-licenses</id> <phase>install</phase> <goals> <goal>remove</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>