Download jfreesvg-2.1.jar file

Introduction

You can download jfreesvg-2.1.jar in this page.

License

GNU General Public License (GPL)

Type List

jfreesvg-2.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.jfree/jfreesvg/pom.properties
META-INF/maven/org.jfree/jfreesvg/pom.xml
org.jfree.graphics2d.Args.class
org.jfree.graphics2d.GradientPaintKey.class
org.jfree.graphics2d.GraphicsUtils.class
org.jfree.graphics2d.LinearGradientPaintKey.class
org.jfree.graphics2d.ObjectUtils.class
org.jfree.graphics2d.RadialGradientPaintKey.class
org.jfree.graphics2d.canvas.CanvasGraphics2D.class
org.jfree.graphics2d.canvas.CanvasUtils.class
org.jfree.graphics2d.svg.FontMapper.class
org.jfree.graphics2d.svg.ImageElement.class
org.jfree.graphics2d.svg.SVGGraphics2D.class
org.jfree.graphics2d.svg.SVGGraphicsConfiguration.class
org.jfree.graphics2d.svg.SVGGraphicsDevice.class
org.jfree.graphics2d.svg.SVGHints.class
org.jfree.graphics2d.svg.SVGUtils.class
org.jfree.graphics2d.svg.StandardFontMapper.class

Pom

jfreesvg-2.1.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>org.jfree</groupId>
  <artifactId>jfreesvg</artifactId>
  <version>2.1</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>JFreeSVG</name>
  <url>http://www.jfree.org/jfreesvg</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>org/jfree/graphics2d/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>org/jfree/graphics2d/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>org.jfree</groupId>
   <artifactId>jfreesvg</artifactId>
   <version>2.1</version>
</dependency>

Download

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



Download jfreesvg-2.1.jar file




PreviousNext

Related