Download orsonpdf-1.7.jar file

Introduction

You can download orsonpdf-1.7.jar in this page.

License

GNU General Public License (GPL)

Type List

orsonpdf-1.7.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.orsonpdf/orsonpdf/pom.properties
META-INF/maven/com.orsonpdf/orsonpdf/pom.xml
com.orsonpdf.DefaultFontMapper.class
com.orsonpdf.Dictionary.class
com.orsonpdf.DictionaryObject.class
com.orsonpdf.ExponentialInterpolationFunction.class
com.orsonpdf.FontKey.class
com.orsonpdf.FontMapper.class
com.orsonpdf.Function.class
com.orsonpdf.FunctionType.class
com.orsonpdf.GraphicsStateDictionary.class
com.orsonpdf.GraphicsStream.class
com.orsonpdf.PDFDocument.class
com.orsonpdf.PDFFont.class
com.orsonpdf.PDFGraphics2D.class
com.orsonpdf.PDFGraphicsConfiguration.class
com.orsonpdf.PDFGraphicsDevice.class
com.orsonpdf.PDFHints.class
com.orsonpdf.PDFImage.class
com.orsonpdf.PDFObject.class
com.orsonpdf.PDFSoftMaskImage.class
com.orsonpdf.PDFUtils.class
com.orsonpdf.Page.class
com.orsonpdf.Pages.class
com.orsonpdf.Pattern.class
com.orsonpdf.StitchingFunction.class
com.orsonpdf.Stream.class
com.orsonpdf.filter.ASCII85Filter.class
com.orsonpdf.filter.Ascii85OutputStream.class
com.orsonpdf.filter.Filter.class
com.orsonpdf.filter.FilterType.class
com.orsonpdf.filter.FlateFilter.class
com.orsonpdf.shading.AxialShading.class
com.orsonpdf.shading.RadialShading.class
com.orsonpdf.shading.Shading.class
com.orsonpdf.shading.ShadingType.class
com.orsonpdf.util.Args.class
com.orsonpdf.util.GradientPaintKey.class
com.orsonpdf.util.GraphicsUtils.class
com.orsonpdf.util.ObjectUtils.class
com.orsonpdf.util.RadialGradientPaintKey.class
com.orsonpdf.util.TextAnchor.class
com.orsonpdf.util.TextUtils.class

Pom

orsonpdf-1.7.pom file content.

<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>
 
  <groupId>com.orsonpdf</groupId>
  <artifactId>orsonpdf</artifactId>
  <version>1.7</version>
  <packaging>jar</packaging>
 
  <!-- this is required to host it on Sonatype's OSSRH -->
  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>9</version>
  </parent>

  <name>OrsonPDF</name>
  <url>http://www.object-refinery.com/orsonpdf</url>
 
  <licenses>
    <license>
      <name>GNU General Public License (GPL)</name>
      <url>http://www.gnu.org/licenses/gpl.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
 
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>3.1</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
          <compilerArgument>-Xlint:unchecked</compilerArgument>
          <encoding>${project.build.sourceEncoding}</encoding>
          <excludes>
            <exclude>com/orsonpdf/demo/**</exclude>
          </excludes>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>1.5</version>
        <executions>
          <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <groupId>org.sonatype.plugins</groupId>
        <artifactId>nexus-staging-maven-plugin</artifactId>
        <version>1.6.2</version>
        <extensions>true</extensions>
        <configuration>
          <serverId>ossrh</serverId>
          <nexusUrl>https://oss.sonatype.org/</nexusUrl>
          <autoReleaseAfterClose>false</autoReleaseAfterClose>
        </configuration>
      </plugin>            

    </plugins>
  </build>

  <distributionManagement>
    <snapshotRepository>
      <id>ossrh</id>
      <url>https://oss.sonatype.org/content/repositories/snapshots</url>
    </snapshotRepository>
  </distributionManagement>    

  <profiles>
    <profile> 
      <id>release</id>
      <build>
        <plugins>
          <plugin>
            <inherited>true</inherited>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-javadoc-plugin</artifactId>
            <version>2.9.1</version>
            <executions>
              <execution>
                <id>attach-javadoc</id>
                <goals>
                  <goal>jar</goal>
                </goals>
              </execution>
            </executions>
            <configuration>
              <sourceFileExcludes>
                <exclude>com/orsonpdf/demo/**</exclude>
              </sourceFileExcludes>
            </configuration>
          </plugin>

          <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-source-plugin</artifactId>
            <version>2.2.1</version>
            <executions>
              <execution>
                <id>attach-sources</id>
                <goals>
                  <goal>jar-no-fork</goal>
                </goals>
              </execution>
            </executions>
          </plugin>
        </plugins>
      </build>
    </profile>
  </profiles>

</project>

POM Entry

<dependency>
   <groupId>com.orsonpdf</groupId>
   <artifactId>orsonpdf</artifactId>
   <version>1.7</version>
</dependency>

Download

If you think the following orsonpdf-1.7.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download orsonpdf-1.7.jar file




PreviousNext

Related