Download cloning-1.9.1.jar file

Introduction

You can download cloning-1.9.1.jar in this page.

License

Apache License, Version 2.0

Type List

cloning-1.9.1.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/uk.com.robust-it/cloning/pom.properties
META-INF/maven/uk.com.robust-it/cloning/pom.xml
com.rits.cloning.Cloner.class
com.rits.cloning.CloningException.class
com.rits.cloning.FastClonerArrayList.class
com.rits.cloning.FastClonerCalendar.class
com.rits.cloning.FastClonerConcurrentHashMap.class
com.rits.cloning.FastClonerCustomCollection.class
com.rits.cloning.FastClonerCustomMap.class
com.rits.cloning.FastClonerHashMap.class
com.rits.cloning.FastClonerHashSet.class
com.rits.cloning.FastClonerLinkedList.class
com.rits.cloning.FastClonerTreeMap.class
com.rits.cloning.IDeepCloner.class
com.rits.cloning.IDumpCloned.class
com.rits.cloning.IFastCloner.class
com.rits.cloning.IFreezable.class
com.rits.cloning.IInstantiationStrategy.class
com.rits.cloning.Immutable.class
com.rits.cloning.ObjenesisInstantiationStrategy.class
com.rits.perspectives.Perspectives.class

Pom

cloning-1.9.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/maven-v4_0_0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>5</version>
	</parent>
	<groupId>uk.com.robust-it</groupId>
	<artifactId>cloning</artifactId>
	<packaging>bundle</packaging>
	<version>1.9.1</version>
	<name>cloning</name>
	<url>https://code.google.com/p/cloning/</url>
	<description><![CDATA[
                The cloning library is a small, open source (Apache
                licensed) Java library which deep-clones objects. The
                objects do not have to implement the Cloneable
                interface. Effectively, this library can clone ANY
                Java object. It can be used i.e. in cache
                implementations, if you don't want the cached object
                to be modified or whenever you want to create a deep
                copy of an object.
        ]]></description>
	<licenses>
		<license>
			<name>Apache License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0</url>
		</license>
	</licenses>
	<properties>
		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
	</properties>
	<scm>
		<connection>scm:git:https://kostas.kougios@code.google.com/p/cloning/</connection>
		<developerConnection>scm:git:https://kostas.kougios@code.google.com/p/cloning/</developerConnection>
		<url>https://code.google.com/p/cloning/source/browse/</url>
	</scm>
	<issueManagement>
		<system>Google Code</system>
		<url>https://code.google.com/p/cloning/issues/list</url>
	</issueManagement>
	<build>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.1</version>
				<configuration>
					<source>1.5</source>
					<target>1.5</target>
					<compilerArgument>-Xlint:unchecked</compilerArgument>
				</configuration>
			</plugin>
			<plugin>
				<artifactId>maven-surefire-plugin</artifactId>
				<version>2.15</version>
				<configuration>
					<includes>
						<include>**/Test*.java</include>
					</includes>
				</configuration>
			</plugin>
			<plugin>
				<artifactId>maven-source-plugin</artifactId>
				<version>2.2.1</version>
				<executions>
					<execution>
						<id>attach-sources</id>
						<goals>
							<goal>jar</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.9.1</version>
				<executions>
					<execution>
						<id>attach-javadocs</id>
						<goals>
							<goal>jar</goal>
						</goals>
						<configuration>
							<additionalparam>-Xdoclint:none</additionalparam>
						</configuration>
					</execution>
				</executions>
			</plugin>
			<plugin>
				<artifactId>maven-release-plugin</artifactId>
				<version>2.4.2</version>
			</plugin>
			<plugin>
				<artifactId>maven-repository-plugin</artifactId>
				<version>2.3.1</version>
			</plugin>
			<plugin>
				<artifactId>maven-assembly-plugin</artifactId>
				<version>2.4</version>
				<executions>
					<execution>
						<phase>package</phase>
						<goals>
							<goal>single</goal>
						</goals>
					</execution>
				</executions>
				<configuration>
					<descriptors>
						<descriptor>src/main/assembly/dist.xml</descriptor>
					</descriptors>
					<descriptorRefs>
						<descriptorRef>project</descriptorRef>
					</descriptorRefs>
				</configuration>
			</plugin>
			<plugin>
				<groupId>org.apache.felix</groupId>
				<artifactId>maven-bundle-plugin</artifactId>
				<version>2.4.0</version>
				<extensions>true</extensions>
			</plugin>
		</plugins>
	</build>
	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>4.11</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.objenesis</groupId>
			<artifactId>objenesis</artifactId>
			<version>2.1</version>
		</dependency>
	</dependencies>
	<profiles>
		<profile>
			<id>sonatype-deploy</id>
			<build>
				<defaultGoal>deploy</defaultGoal>
				<plugins>
					<plugin>
						<artifactId>maven-gpg-plugin</artifactId>
						<version>1.4</version>
						<executions>
							<execution>
								<id>sign-artifacts</id>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
								<configuration>
									<useAgent>true</useAgent>
								</configuration>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project> 

POM Entry

<dependency>
   <groupId>uk.com.robust-it</groupId>
   <artifactId>cloning</artifactId>
   <version>1.9.1</version>
</dependency>

Download

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



Download cloning-1.9.1.jar file




PreviousNext

Related