c

cloning

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.
https://code.google.com/p/cloning/
Apache License, Version 2.0
Files download
File Operation
cloning-1.9.12.jar download
cloning-1.9.12.pom download
cloning-1.9.12-sources.jar download
Apache Maven
<dependency>
  <groupId>uk.com.robust-it</groupId>
  <artifactId>cloning</artifactId>
  <version>1.9.12</version>
  <type>bundle</type>
</dependency>
Gradle Groovy
implementation 'uk.com.robust-it:cloning:1.9.12'
Gradle Kotlin
implementation("uk.com.robust-it:cloning:1.9.12")
Scala SBT
libraryDependencies += "uk.com.robust-it" % "cloning" % "1.9.12"
Groovy Grape
@Grapes(
  @Grab(group='uk.com.robust-it', module='cloning', version='1.9.12')
)
Apache Ivy
<dependency org="uk.com.robust-it" name="cloning" rev="1.9.12" />
Leiningen
[uk.com.robust-it/cloning "1.9.12"]
Apache Buildr
'uk.com.robust-it:cloning:jar:1.9.12'