Download lzma-java-1.3.jar file

Introduction

You can download lzma-java-1.3.jar in this page.

License

Apache License Version 2.0

Type List

lzma-java-1.3.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/com.github.jponge/lzma-java/pom.properties
META-INF/maven/com.github.jponge/lzma-java/pom.xml
lzma.sdk.CRC.class
lzma.sdk.ICodeProgress.class
lzma.sdk.lz.BinTree.class
lzma.sdk.lz.InWindow.class
lzma.sdk.lz.OutWindow.class
lzma.sdk.lzma.Base.class
lzma.sdk.lzma.Decoder.class
lzma.sdk.lzma.Encoder.class
lzma.sdk.rangecoder.BitTreeDecoder.class
lzma.sdk.rangecoder.BitTreeEncoder.class
lzma.sdk.rangecoder.Decoder.class
lzma.sdk.rangecoder.Encoder.class
lzma.streams.LzmaDecoderWrapper.class
lzma.streams.LzmaEncoderWrapper.class
lzma.streams.LzmaInputStream.class
lzma.streams.LzmaOutputStream.class
org.cservenak.streams.Coder.class
org.cservenak.streams.CoderInputStream.class
org.cservenak.streams.CoderOutputStream.class
org.cservenak.streams.CoderThread.class

Pom

lzma-java-1.3.pom file content.

<?xml version="1.0"?>
<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>

    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <groupId>com.github.jponge</groupId>
    <artifactId>lzma-java</artifactId>

    <packaging>jar</packaging>
    <version>1.3</version>

    <name>LZMA Java</name>
    <description>LZMA library for Java</description>
    <url>http://jponge.github.com/lzma-java</url>

    <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>

    <developers>
        <developer>
            <id>jponge</id>
            <name>Julien Ponge</name>
            <email>julien.ponge@gmail.com</email>
            <url>http://julien.ponge.info/</url>
            <roles>
                <role>developer</role>
            </roles>
        </developer>
        <developer>
            <id>cstamas</id>
            <name>Tamas Cservenak</name>
            <email>tamas@cservenak.com</email>
            <url>http://www.cservenak.com/</url>
            <roles>
                <role>contributor</role>
            </roles>
        </developer>
        <developer>
            <id>lauri.hahne</id>
            <name>Lauri Hahne</name>
            <email>lauri.hahne@tut.fi</email>
            <roles>
                <role>contributor</role>
            </roles>
        </developer>
    </developers>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.7</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>1.4</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>

    <scm>
        <connection>scm:git:git://github.com/jponge/lzma-java.git</connection>
        <developerConnection>scm:git:git://github.com/jponge/lzma-java.git</developerConnection>
        <url>http://github.com/jponge/lzma-java/tree/master</url>
    </scm>

    <issueManagement>
        <system>GitHub</system>
        <url>http://github.com/jponge/lzma-java/issues</url>
    </issueManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-plugin</artifactId>
                <version>2.7.1</version>
                <configuration>
                    <argLine>-Xms256m -Xmx256m</argLine>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-assembly-plugin</artifactId>
                <version>2.1</version>
                <configuration>
                    <descriptorRefs>
                        <descriptorRef>bin</descriptorRef>
                        <descriptorRef>src</descriptorRef>
                    </descriptorRefs>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.1</version>
                <configuration>
                    <localCheckout>true</localCheckout>
                    <pushChanges>false</pushChanges>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <profiles>
        <profile>
            <id>release-sign-artifacts</id>
            <activation>
                <property>
                    <name>performRelease</name>
                    <value>true</value>
                </property>
            </activation>
            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <version>1.1</version>
                        <executions>
                            <execution>
                                <phase>install</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>

</project>

POM Entry

<dependency>
   <groupId>com.github.jponge</groupId>
   <artifactId>lzma-java</artifactId>
   <version>1.3</version>
</dependency>

Download

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



Download lzma-java-1.3.jar file




PreviousNext

Related