Download jtar-2.3.jar file

Introduction

You can download jtar-2.3.jar in this page.

License

Apache Software License

Type List

jtar-2.3.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.kamranzafar/jtar/pom.properties
META-INF/maven/org.kamranzafar/jtar/pom.xml
org.kamranzafar.jtar.Octal.class
org.kamranzafar.jtar.PermissionUtils.class
org.kamranzafar.jtar.TarConstants.class
org.kamranzafar.jtar.TarEntry.class
org.kamranzafar.jtar.TarHeader.class
org.kamranzafar.jtar.TarInputStream.class
org.kamranzafar.jtar.TarOutputStream.class
org.kamranzafar.jtar.TarUtils.class

Pom

jtar-2.3.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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<groupId>org.kamranzafar</groupId>
	<artifactId>jtar</artifactId>
	<name>JTar</name>
	<version>2.3</version>
	<description>Java Tar API</description>
	
	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>5</version>
	</parent>
	
	<developers>
		<developer>
			<id>xeus.man</id>
			<name>Kamran Zafar</name>
			<email>xeus.man@gmail.com
            </email>
			<roles>
				<role>developer</role>
			</roles>
		</developer>
	</developers>
	
	<licenses>
		<license>
			<name>Apache Software License</name>
			<url>${basedir}/LICENSE.txt
            </url>
			<distribution>repo</distribution>
		</license>
	</licenses>
	
	<organization>
		<name>Kamran Zafar</name>
		<url>http://kamranzafar.org</url>
	</organization>
	
	<scm>
		<connection>scm:git:git@github.com:kamranzafar/jtar.git</connection>
		<developerConnection>scm:git:git@github.com:kamranzafar/jtar.git</developerConnection>
		<url>git@github.com:kamranzafar/jtar.git</url>
	</scm>
	
	<build>
		<sourceDirectory>${basedir}/src/main/java
        </sourceDirectory>
		<testSourceDirectory>${basedir}/src/test/java
        </testSourceDirectory>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.7</source>
					<target>1.7</target>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-source-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-javadoc-plugin</artifactId>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
							<additionalparam>-Xdoclint:none</additionalparam>
						</configuration>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.12.4</version>
				<configuration>
					<skipTests>${skipTests}</skipTests>
				</configuration>
			</plugin>
		</plugins>
	</build>
	
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.8.1</version>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<profiles>
		<profile>
			<id>sign</id>
			<build>
				<plugins>
					<plugin>
						<groupId>org.apache.maven.plugins</groupId>
						<artifactId>maven-gpg-plugin</artifactId>
						<executions>
							<execution>
								<id>sign-artifacts</id>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
	
	<properties>
		<skipTests>false</skipTests>
	</properties>
</project>

POM Entry

<dependency>
   <groupId>org.kamranzafar</groupId>
   <artifactId>jtar</artifactId>
   <version>2.3</version>
</dependency>

Download

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



Download jtar-2.3.jar file




PreviousNext

Related