diff --git a/.gitattributes b/.gitattributes
deleted file mode 100644
index 0d1a34a..0000000
--- a/.gitattributes
+++ /dev/null
@@ -1 +0,0 @@
-epl.html linguist-vendored=true
diff --git a/.github/PULL_REQUEST_TEMPLATE b/.github/PULL_REQUEST_TEMPLATE
deleted file mode 100644
index 686625a..0000000
--- a/.github/PULL_REQUEST_TEMPLATE
+++ /dev/null
@@ -1,14 +0,0 @@
-Hi! Thanks for your interest in contributing to this project.
-
-Clojure contrib projects do not use GitHub issues or pull requests, and
-require a signed Contributor Agreement. If you would like to contribute,
-please read more about the CA and sign that first (this can be done online).
-
-Then go to this project's issue tracker in JIRA to create tickets, update
-tickets, or submit patches. For help in creating tickets and patches,
-please see:
-
-- Signing the CA: https://clojure.org/community/contributing
-- Creating Tickets: https://clojure.org/community/creating_tickets
-- Developing Patches: https://clojure.org/community/developing_patches
-- Contributing FAQ: https://clojure.org/community/contributing
diff --git a/.github/workflows/doc-build.yml b/.github/workflows/doc-build.yml
deleted file mode 100644
index bd38321..0000000
--- a/.github/workflows/doc-build.yml
+++ /dev/null
@@ -1,10 +0,0 @@
-name: Build API Docs
-
-on:
- workflow_dispatch:
-
-jobs:
- call-doc-build-workflow:
- uses: clojure/build.ci/.github/workflows/doc-build.yml@master
- with:
- project: clojure/java.data
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
deleted file mode 100644
index e2718bd..0000000
--- a/.github/workflows/release.yml
+++ /dev/null
@@ -1,19 +0,0 @@
-name: Release on demand
-
-on:
- workflow_dispatch:
- inputs:
- releaseVersion:
- description: "Version to release"
- required: true
- snapshotVersion:
- description: "Snapshot version after release"
- required: true
-
-jobs:
- call-release:
- uses: clojure/build.ci/.github/workflows/release.yml@master
- with:
- releaseVersion: ${{ github.event.inputs.releaseVersion }}
- snapshotVersion: ${{ github.event.inputs.snapshotVersion }}
- secrets: inherit
\ No newline at end of file
diff --git a/.github/workflows/snapshot.yml b/.github/workflows/snapshot.yml
deleted file mode 100644
index 2472957..0000000
--- a/.github/workflows/snapshot.yml
+++ /dev/null
@@ -1,8 +0,0 @@
-name: Snapshot on demand
-
-on: [workflow_dispatch]
-
-jobs:
- call-snapshot:
- uses: clojure/build.ci/.github/workflows/snapshot.yml@master
- secrets: inherit
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
deleted file mode 100644
index 1fa127c..0000000
--- a/.github/workflows/test.yml
+++ /dev/null
@@ -1,7 +0,0 @@
-name: Test
-
-on: [push]
-
-jobs:
- call-test:
- uses: clojure/build.ci/.github/workflows/test.yml@master
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 023f853..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,12 +0,0 @@
-.calva/output-window
-.calva/repl.calva-repl
-.classpath
-.clj-kondo/.cache
-.cpcache/
-.lsp/.cache
-.nrepl-port
-.portal
-.project
-.settings
-.socket-repl-port
-/target
diff --git a/CHANGELOG.md b/CHANGELOG.md
deleted file mode 100644
index fbca448..0000000
--- a/CHANGELOG.md
+++ /dev/null
@@ -1,58 +0,0 @@
-## Change Log
-
-* Release 1.3.113 on 2025-01-23
- * In builders, for overloaded setters (for which we have matching properties), try to pick the "obviously better" match (using `instance?` against the property value), and only throw if we can't pick one [JDATA-25](https://clojure.atlassian.net/browse/JDATA-25).
- * In builders, ignore setters for which we do not have matching properties [JDATA-24](https://clojure.atlassian.net/browse/JDATA-24).
-
-* Release 1.2.107 on 2024-02-19
- * Update parent pom and tools.logging versions
-
-* Release 1.1.103 on 2023-12-16
- * IMPORTANT: `org.clojure/tools.logging` is no longer a dependency. If you currently bind `*to-java-object-missing-setter*` to `:log` and you do not otherwise have a dependency on `org.clojure/tools.logging` you will need to add that to your project's direct dependencies.
-
-* Release 1.0.95 on 2021-12-12
- * Update `org.clojure/tools.logging` to `1.2.1`.
-
-* Release 1.0.92 on 2021-10-16
- * Support `to-java` for `java.util.Properties` and a hash map JDATA-22.
-
-* Release 1.0.86 on 2020-07-17
- * Add `from-java-deep` to guarantee deep conversion with same options as `from-java-shallow` [JDATA-21](https://clojure.atlassian.net/browse/JDATA-21).
- * Fixes bug in `from-java-shallow` for getters returning `Boolean` (the value was not canonicalized so `false` could be truthy).
-
-* Release 1.0.78 on 2020-05-31
- * Make exception handling in shallow conversions configurable: an `:exceptions` option may be `:group`, `:omit`, `:quaify`, or `:return`.
- * Fix bug in shallow array handling.
-
-* Release 1.0.73 on 2020-05-31
- * Add `from-java-shallow` to provide functionality similar to `clojure.core/bean` (a shallow conversion) but with options to control behavior (so "dangerous" methods that appear as getters can be omitted).
- * Bump `org.clojure/tools.logging` to `1.1.0`.
- * Move change log to a separate file.
- * Improve documentation around property naming and how it corresponds to setter function names.
-
-* Release 1.0.64 on 2020-02-18
- * Switch to 1.0.x versioning.
- * Bump `org.clojure/tools.logging` to `0.6.0`.
- * Add basic tests for the builder [JDATA-20](https://clojure.atlassian.net/browse/JDATA-20).
-
-* Release 0.2.0 on 2020-01-02
- * Add `clojure.java.data.builder/to-java` to construct Java objects from builders using hash maps of properties JDATA-18.
-
-* Release 0.1.5 on 2019-12-20
- * Add `set-properties` to populate an existing object JDATA-15.
- * Add `:clojure.java.data/constructor` metadata support JDATA-16.
-
-* Release 0.1.4 on 2019-10-13
- * Fix Clojure hash map conversion problems JDATA-14 (problems introduced in 0.1.3)
-
-* Release 0.1.3 on 2019-10-13
- * Fix `java.util.Map`/Clojure hash map setter handling JDATA-6.
- * Fix `Boolean` conversion JDATA-10.
- * Fix `SQLException` handling JDATA-12.
-
-* Release 0.1.2 on 2019-10-12
- * Fix reflection warnings JDATA-2 and JDATA-13.
-
-* Release 0.1.1 on 2012-04-29
- * Initial release.
- * Clojure 1.2 compatibility.
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
deleted file mode 100644
index 0aa519c..0000000
--- a/CONTRIBUTING.md
+++ /dev/null
@@ -1,12 +0,0 @@
-This is a [Clojure contrib] project.
-
-Under the Clojure contrib [guidelines], this project cannot accept
-pull requests. All patches must be submitted via [JIRA].
-
-See [Contributing] on the Clojure website for
-more information on how to contribute.
-
-[Clojure contrib]: https://clojure.org/community/contrib_libs
-[Contributing]: https://clojure.org/community/contributing
-[JIRA]: https://clojure.atlassian.net/browse/JDATA
-[guidelines]: https://clojure.org/community/contrib_howto
diff --git a/LICENSE b/LICENSE
deleted file mode 100644
index e246f6a..0000000
--- a/LICENSE
+++ /dev/null
@@ -1,205 +0,0 @@
-Eclipse Public License - v 1.0
-
-THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE PUBLIC
-LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE PROGRAM
-CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
-
-1. DEFINITIONS
-
-"Contribution" means:
-
-a) in the case of the initial Contributor, the initial code and documentation
- distributed under this Agreement, and
-b) in the case of each subsequent Contributor:
- i) changes to the Program, and
- ii) additions to the Program;
-
- where such changes and/or additions to the Program originate from and are
- distributed by that particular Contributor. A Contribution 'originates'
- from a Contributor if it was added to the Program by such Contributor
- itself or anyone acting on such Contributor's behalf. Contributions do not
- include additions to the Program which: (i) are separate modules of
- software distributed in conjunction with the Program under their own
- license agreement, and (ii) are not derivative works of the Program.
-
-"Contributor" means any person or entity that distributes the Program.
-
-"Licensed Patents" mean patent claims licensable by a Contributor which are
-necessarily infringed by the use or sale of its Contribution alone or when
-combined with the Program.
-
-"Program" means the Contributions distributed in accordance with this
-Agreement.
-
-"Recipient" means anyone who receives the Program under this Agreement,
-including all Contributors.
-
-2. GRANT OF RIGHTS
- a) Subject to the terms of this Agreement, each Contributor hereby grants
- Recipient a non-exclusive, worldwide, royalty-free copyright license to
- reproduce, prepare derivative works of, publicly display, publicly
- perform, distribute and sublicense the Contribution of such Contributor,
- if any, and such derivative works, in source code and object code form.
- b) Subject to the terms of this Agreement, each Contributor hereby grants
- Recipient a non-exclusive, worldwide, royalty-free patent license under
- Licensed Patents to make, use, sell, offer to sell, import and otherwise
- transfer the Contribution of such Contributor, if any, in source code and
- object code form. This patent license shall apply to the combination of
- the Contribution and the Program if, at the time the Contribution is
- added by the Contributor, such addition of the Contribution causes such
- combination to be covered by the Licensed Patents. The patent license
- shall not apply to any other combinations which include the Contribution.
- No hardware per se is licensed hereunder.
- c) Recipient understands that although each Contributor grants the licenses
- to its Contributions set forth herein, no assurances are provided by any
- Contributor that the Program does not infringe the patent or other
- intellectual property rights of any other entity. Each Contributor
- disclaims any liability to Recipient for claims brought by any other
- entity based on infringement of intellectual property rights or
- otherwise. As a condition to exercising the rights and licenses granted
- hereunder, each Recipient hereby assumes sole responsibility to secure
- any other intellectual property rights needed, if any. For example, if a
- third party patent license is required to allow Recipient to distribute
- the Program, it is Recipient's responsibility to acquire that license
- before distributing the Program.
- d) Each Contributor represents that to its knowledge it has sufficient
- copyright rights in its Contribution, if any, to grant the copyright
- license set forth in this Agreement.
-
-3. REQUIREMENTS
-
-A Contributor may choose to distribute the Program in object code form under
-its own license agreement, provided that:
-
- a) it complies with the terms and conditions of this Agreement; and
- b) its license agreement:
- i) effectively disclaims on behalf of all Contributors all warranties
- and conditions, express and implied, including warranties or
- conditions of title and non-infringement, and implied warranties or
- conditions of merchantability and fitness for a particular purpose;
- ii) effectively excludes on behalf of all Contributors all liability for
- damages, including direct, indirect, special, incidental and
- consequential damages, such as lost profits;
- iii) states that any provisions which differ from this Agreement are
- offered by that Contributor alone and not by any other party; and
- iv) states that source code for the Program is available from such
- Contributor, and informs licensees how to obtain it in a reasonable
- manner on or through a medium customarily used for software exchange.
-
-When the Program is made available in source code form:
-
- a) it must be made available under this Agreement; and
- b) a copy of this Agreement must be included with each copy of the Program.
- Contributors may not remove or alter any copyright notices contained
- within the Program.
-
-Each Contributor must identify itself as the originator of its Contribution,
-if
-any, in a manner that reasonably allows subsequent Recipients to identify the
-originator of the Contribution.
-
-4. COMMERCIAL DISTRIBUTION
-
-Commercial distributors of software may accept certain responsibilities with
-respect to end users, business partners and the like. While this license is
-intended to facilitate the commercial use of the Program, the Contributor who
-includes the Program in a commercial product offering should do so in a manner
-which does not create potential liability for other Contributors. Therefore,
-if a Contributor includes the Program in a commercial product offering, such
-Contributor ("Commercial Contributor") hereby agrees to defend and indemnify
-every other Contributor ("Indemnified Contributor") against any losses,
-damages and costs (collectively "Losses") arising from claims, lawsuits and
-other legal actions brought by a third party against the Indemnified
-Contributor to the extent caused by the acts or omissions of such Commercial
-Contributor in connection with its distribution of the Program in a commercial
-product offering. The obligations in this section do not apply to any claims
-or Losses relating to any actual or alleged intellectual property
-infringement. In order to qualify, an Indemnified Contributor must:
-a) promptly notify the Commercial Contributor in writing of such claim, and
-b) allow the Commercial Contributor to control, and cooperate with the
-Commercial Contributor in, the defense and any related settlement
-negotiations. The Indemnified Contributor may participate in any such claim at
-its own expense.
-
-For example, a Contributor might include the Program in a commercial product
-offering, Product X. That Contributor is then a Commercial Contributor. If
-that Commercial Contributor then makes performance claims, or offers
-warranties related to Product X, those performance claims and warranties are
-such Commercial Contributor's responsibility alone. Under this section, the
-Commercial Contributor would have to defend claims against the other
-Contributors related to those performance claims and warranties, and if a
-court requires any other Contributor to pay any damages as a result, the
-Commercial Contributor must pay those damages.
-
-5. NO WARRANTY
-
-EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED ON AN
-"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR
-IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE,
-NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each
-Recipient is solely responsible for determining the appropriateness of using
-and distributing the Program and assumes all risks associated with its
-exercise of rights under this Agreement , including but not limited to the
-risks and costs of program errors, compliance with applicable laws, damage to
-or loss of data, programs or equipment, and unavailability or interruption of
-operations.
-
-6. DISCLAIMER OF LIABILITY
-
-EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR ANY
-CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION
-LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE
-EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY
-OF SUCH DAMAGES.
-
-7. GENERAL
-
-If any provision of this Agreement is invalid or unenforceable under
-applicable law, it shall not affect the validity or enforceability of the
-remainder of the terms of this Agreement, and without further action by the
-parties hereto, such provision shall be reformed to the minimum extent
-necessary to make such provision valid and enforceable.
-
-If Recipient institutes patent litigation against any entity (including a
-cross-claim or counterclaim in a lawsuit) alleging that the Program itself
-(excluding combinations of the Program with other software or hardware)
-infringes such Recipient's patent(s), then such Recipient's rights granted
-under Section 2(b) shall terminate as of the date such litigation is filed.
-
-All Recipient's rights under this Agreement shall terminate if it fails to
-comply with any of the material terms or conditions of this Agreement and does
-not cure such failure in a reasonable period of time after becoming aware of
-such noncompliance. If all Recipient's rights under this Agreement terminate,
-Recipient agrees to cease use and distribution of the Program as soon as
-reasonably practicable. However, Recipient's obligations under this Agreement
-and any licenses granted by Recipient relating to the Program shall continue
-and survive.
-
-Everyone is permitted to copy and distribute copies of this Agreement, but in
-order to avoid inconsistency the Agreement is copyrighted and may only be
-modified in the following manner. The Agreement Steward reserves the right to
-publish new versions (including revisions) of this Agreement from time to
-time. No one other than the Agreement Steward has the right to modify this
-Agreement. The Eclipse Foundation is the initial Agreement Steward. The
-Eclipse Foundation may assign the responsibility to serve as the Agreement
-Steward to a suitable separate entity. Each new version of the Agreement will
-be given a distinguishing version number. The Program (including
-Contributions) may always be distributed subject to the version of the
-Agreement under which it was received. In addition, after a new version of the
-Agreement is published, Contributor may elect to distribute the Program
-(including its Contributions) under the new version. Except as expressly
-stated in Sections 2(a) and 2(b) above, Recipient receives no rights or
-licenses to the intellectual property of any Contributor under this Agreement,
-whether expressly, by implication, estoppel or otherwise. All rights in the
-Program not expressly granted under this Agreement are reserved.
-
-This Agreement is governed by the laws of the State of New York and the
-intellectual property laws of the United States of America. No party to this
-Agreement will bring a legal action under this Agreement more than one year
-after the cause of action arose. Each party waives its rights to a jury trial in
-any resulting litigation.
-
-
diff --git a/README.md b/README.md
deleted file mode 100644
index 148d4e8..0000000
--- a/README.md
+++ /dev/null
@@ -1,185 +0,0 @@
-# java.data
-
-Functions for recursively converting Java beans to Clojure and vice
-versa.
-
-You can perform shallow conversions and deep conversions, and `java.data`
-provides quite a bit of control over the conversion process.
-
-Conversion of Clojure maps etc to specific Java types is generally fairly
-straightforward, either via regular construction or via "builder" APIs.
-
-Some Java types, however, are going to be difficult to convert to Clojure,
-e.g., Protobuf is particularly problematic because it is all recursive metadata
-about types and values: even when you use `:omit` to avoid deep recursion in
-an automated conversion, you are not necessarily going to get a useful result.
-
-## Releases and Dependency Information
-
-This project follows the version scheme MAJOR.MINOR.COMMITS where MAJOR and MINOR provide some relative indication of the size of the change, but do not follow semantic versioning. In general, all changes endeavor to be non-breaking (by moving to new names rather than by breaking existing names). COMMITS is an ever-increasing counter of commits since the beginning of this repository.
-
-Latest stable release: 1.3.113
-
-* [All Released Versions](https://search.maven.org/#search%7Cga%7C1%7Corg.clojure%20java.data)
-* [Development Snapshot Versions](https://repository.sonatype.org/index.html#nexus-search;gav~org.clojure~java.data~~~)
-
-### [CLI/`deps.edn`](https://clojure.org/reference/deps_and_cli) dependency information:
-
-```clojure
-org.clojure/java.data {:mvn/version "1.3.113"}
-```
-
-### Leiningen
-
-```clojure
-[org.clojure/java.data "1.3.113"]
-```
-
-### Maven
-
-```xml
-
- org.clojure
- java.data
- 1.3.113
-
-```
-
-## Example Usage
-
-```clojure
-(require '[clojure.java.data :as j])
-
-;; construct YourJavaClass instance from Clojure data structure
-;; (usually a Clojure hash map of properties to set on the instance):
-(j/to-java YourJavaClass clojure-property-map)
-
-;; the 0-arity constructor is called to construct the instance
-;; and then the properties are added by calling setters
-
-;; note that keys in the property map must follow the :camelCase
-;; naming of the Java fields to which they correspond, so that
-;; the appropriate setter methods can be invoked, e.g.,
-(j/to-java SomeJavaClass {:stuff 42 :moreStuff "13"})
-;; this is equivalent to:
-(let [obj (SomeJavaClass.)]
- (.setStuff obj 42)
- (.setMoreStuff obj "13"))
-
-;; represent a javaValue instance in a Clojure data structure:
-(j/from-java javaValue)
-
-;; from-java is the legacy, default API and offers no control over the
-;; conversion process; from-java-shallow and from-java-deep accept options
-;; that provide control over which properties to omit, how to handle property
-;; methods that fail, etc, and should be preferred over the default from-java
-
-;; populate javaValue instance from a Clojure property hash map
-;; (calls a setter for each key/value pair in the hash map):
-(j/set-properties javaValue clojure-property-map)
-
-;; provide constructor arguments via metadata:
-(j/to-java YourJavaClass
- (with-meta clojure-property-map
- {::j/constructor ["constructor" "arguments"]}))
-;; constructor arguments must match the parameter types
-;; so you may need type hints and coercions on them
-```
-
-Representing an instance of `YourJavaClass` in a Clojure data structure
-
-```clojure
-(defmethod j/from-java YourJavaClass [instance]
- ; your custom logic for turning this instance into a clojure data structure
-)
-```
-
-Constructing an instance of `YourJavaClass` from a Clojure data structure
-
-```clojure
-(defmethod j/to-java [YourJavaClass clojure.lang.APersistentMap] [clazz props]
- ; your custom logic for constructing an instance from a property map
-)
-```
-
-### Usage with Builder Classes
-
-As of 0.2.0, `java.data` adds a new namespace and a new `to-java`
-function that supports the Builder Pattern. Instead of just creating an instance
-of the specified class and then setting properties on it, this variant works
-with an associated "builder" class (or instance), setting properties on it,
-and then producing an instance of the specified class from it.
-
-In Java, that typically looks like:
-
-```java
-MyClass foo = new MyClass.Builder()
- .fooBar( 42 )
- .quux( "stuff" )
- .build();
-```
-
-That becomes:
-
-```clojure
-(require '[clojure.java.data.builder :as builder])
-
-(def foo (builder/to-java MyClass {:fooBar 42 :quux "stuff"}))
-```
-
-By default, this assumes `MyClass` has a nested class called `Builder`, and the
-property methods could be `.fooBar`, `.setFooBar`, or `.withFooBar` (and
-`.quux`, `.setQuux`, or `.withQuux`), and then a `.build` method
-that produces the `MyClass` object.
-
-You can also specify an options hash map containing any of the following:
-
-* `:builder-class` -- the class that should be used for the builder process; by default it will assume an inner class of `clazz` called `Builder`,
-* `:builder-props` -- properties used to construct and initialize an instance of the builder class; defaults to an empty hash map; may have `:clojure.java.data/constructor` as metadata to provide constructor arguments for the builder instance,
-* `:build-fn` -- the name of the method in the `Builder` class to use to complete the builder process and return the desired class; by default it will try to deduce it, preferring `build` if we find multiple candidates,
-* `:ignore-setters?` -- a flag to indicate that methods on the builder class that begin with `set` should be ignored, which may be necessary to avoid ambiguous methods that look like builder properties; by default `setFooBar` and `withQuuxIt` will be treated as builder properties `fooBar` and `quuxIt` if they accept a single argument and return a builder instance.
-
-Additional arities allow you to specify a builder instance, for cases where the
-builder is not simply constructed from a (nested) class, and both a builder class
-and a builder instance for more complex cases:
-
-```clojure
-;; requires the options hash map, even if it is empty:
-(builder/to-java MyClass (MyClass/builder) {:bar 42 :quux "stuff"} {})
-
-;; for cases where the type of the builder instance differs from the actual
-;; builder class that should be used for property method return types:
-(builder/to-java MyClass MyClassBuilder (MyClass/builder) {:bar 42 :quux "stuff"} {})
-```
-
-## Feature comparison to `clojure.core/bean`
-
-Clojure core provides a `bean` function which has some overlap with java.data. Below is a more detailed comparison:
-
-Dimension | `bean` | `java.data`
--- | ------ | -----------
-find fields | bean introspector | bean introspector - "class"
-depth | 1 | recursive without cycle detection
-field names | keyword | keyword
-extensibility | none | multimethod on class
-special casing | none | arrays, iterable, maps, enums, Instant, SQLException, XMLGregorianCalendar
-map keys | unhandled | untouched
-exception defense | none | none
-
-## Developer Information
-
-* [GitHub project](https://github.com/clojure/java.data)
-* [Bug Tracker](https://clojure.atlassian.net/browse/JDATA)
-* [Continuous Integration](https://github.com/clojure/java.data/actions/workflows/test.yml)
-
-## Copyright and License
-
-Copyright (c) Rich Hickey and contributors. All rights reserved.
-
-The use and distribution terms for this software are covered by the
-[Eclipse Public License
-1.0](https://opensource.org/license/epl-1-0/) which can be
-found in the file epl.html at the root of this distribution. By using
-this software in any fashion, you are agreeing to be bound by the
-terms of this license. You must not remove this notice, or any other,
-from this software.
diff --git a/api-index.html b/api-index.html
new file mode 100644
index 0000000..fa3cf76
--- /dev/null
+++ b/api-index.html
@@ -0,0 +1,231 @@
+
+
+
+ Index - java.data 1.0.96-SNAPSHOT API documentation
+
+
+
+
+
+
+
+
+
+
+from-java multimethod clojure.java.data Convert a Java object to a Clojure map..
+from-java-deep multimethod clojure.java.data Convert a Java object to a Clojure map (converting...
+from-java-shallow multimethod clojure.java.data Convert a Java object to a Clojure map (but do not...
+
+
+
+
G
+
+
+
+
+
H
+
+
+
+
+
I
+
+
+
+
+
J
+
+
+
+
+
K
+
+
+
+
+
L
+
+
+
+
+
M
+
+
+
+
+
N
+
+
+
+
+
O
+
+
+
+
+
P
+
+
+
+
+
Q
+
+
+
+
+
R
+
+
+
+
+
S
+
+set-properties function clojure.java.data Given an existing Java object and a Clojure map, u...
+
+
+
+
T
+
+*to-java-object-missing-setter* dynamic var clojure.java.data Specify the behavior of missing setters in to-java...
+to-java multimethod clojure.java.data Convert Clojure data to an instance of the specifi...
+to-java function clojure.java.data.builder Given a class and a hash map of properties,...
+
+
+
+
U
+
+
+
+
+
V
+
+
+
+
+
W
+
+
+
+
+
X
+
+
+
+
+
Y
+
+
+
+
+
Z
+
+
+
+
+
Other
+
+
+
+
+
+
+
+
+
+
+
+
Copyright 2007-2023 by Rich Hickey and the various contributors
+
+
+
Logo & site design by Tom Hickey.
+ Clojure auto-documentation system by Tom Faulhaber.
+
+
+
+
+
\ No newline at end of file
diff --git a/deps.edn b/deps.edn
deleted file mode 100644
index 3ffcee7..0000000
--- a/deps.edn
+++ /dev/null
@@ -1 +0,0 @@
-{:paths ["src/main/clojure"]}
diff --git a/epl.html b/epl.html
deleted file mode 100644
index fd39122..0000000
--- a/epl.html
+++ /dev/null
@@ -1,261 +0,0 @@
-
-
-
-
-
-
-Eclipse Public License - Version 1.0
-
-
-
-
-
-
-
Eclipse Public License - v 1.0
-
-
THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
-PUBLIC LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR
-DISTRIBUTION OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS
-AGREEMENT.
-
-
1. DEFINITIONS
-
-
"Contribution" means:
-
-
a) in the case of the initial Contributor, the initial
-code and documentation distributed under this Agreement, and
-
b) in the case of each subsequent Contributor:
-
i) changes to the Program, and
-
ii) additions to the Program;
-
where such changes and/or additions to the Program
-originate from and are distributed by that particular Contributor. A
-Contribution 'originates' from a Contributor if it was added to the
-Program by such Contributor itself or anyone acting on such
-Contributor's behalf. Contributions do not include additions to the
-Program which: (i) are separate modules of software distributed in
-conjunction with the Program under their own license agreement, and (ii)
-are not derivative works of the Program.
-
-
"Contributor" means any person or entity that distributes
-the Program.
-
-
"Licensed Patents" mean patent claims licensable by a
-Contributor which are necessarily infringed by the use or sale of its
-Contribution alone or when combined with the Program.
-
-
"Program" means the Contributions distributed in accordance
-with this Agreement.
-
-
"Recipient" means anyone who receives the Program under
-this Agreement, including all Contributors.
-
-
2. GRANT OF RIGHTS
-
-
a) Subject to the terms of this Agreement, each
-Contributor hereby grants Recipient a non-exclusive, worldwide,
-royalty-free copyright license to reproduce, prepare derivative works
-of, publicly display, publicly perform, distribute and sublicense the
-Contribution of such Contributor, if any, and such derivative works, in
-source code and object code form.
-
-
b) Subject to the terms of this Agreement, each
-Contributor hereby grants Recipient a non-exclusive, worldwide,
-royalty-free patent license under Licensed Patents to make, use, sell,
-offer to sell, import and otherwise transfer the Contribution of such
-Contributor, if any, in source code and object code form. This patent
-license shall apply to the combination of the Contribution and the
-Program if, at the time the Contribution is added by the Contributor,
-such addition of the Contribution causes such combination to be covered
-by the Licensed Patents. The patent license shall not apply to any other
-combinations which include the Contribution. No hardware per se is
-licensed hereunder.
-
-
c) Recipient understands that although each Contributor
-grants the licenses to its Contributions set forth herein, no assurances
-are provided by any Contributor that the Program does not infringe the
-patent or other intellectual property rights of any other entity. Each
-Contributor disclaims any liability to Recipient for claims brought by
-any other entity based on infringement of intellectual property rights
-or otherwise. As a condition to exercising the rights and licenses
-granted hereunder, each Recipient hereby assumes sole responsibility to
-secure any other intellectual property rights needed, if any. For
-example, if a third party patent license is required to allow Recipient
-to distribute the Program, it is Recipient's responsibility to acquire
-that license before distributing the Program.
-
-
d) Each Contributor represents that to its knowledge it
-has sufficient copyright rights in its Contribution, if any, to grant
-the copyright license set forth in this Agreement.
-
-
3. REQUIREMENTS
-
-
A Contributor may choose to distribute the Program in object code
-form under its own license agreement, provided that:
-
-
a) it complies with the terms and conditions of this
-Agreement; and
-
-
b) its license agreement:
-
-
i) effectively disclaims on behalf of all Contributors
-all warranties and conditions, express and implied, including warranties
-or conditions of title and non-infringement, and implied warranties or
-conditions of merchantability and fitness for a particular purpose;
-
-
ii) effectively excludes on behalf of all Contributors
-all liability for damages, including direct, indirect, special,
-incidental and consequential damages, such as lost profits;
-
-
iii) states that any provisions which differ from this
-Agreement are offered by that Contributor alone and not by any other
-party; and
-
-
iv) states that source code for the Program is available
-from such Contributor, and informs licensees how to obtain it in a
-reasonable manner on or through a medium customarily used for software
-exchange.
-
-
When the Program is made available in source code form:
-
-
a) it must be made available under this Agreement; and
-
-
b) a copy of this Agreement must be included with each
-copy of the Program.
-
-
Contributors may not remove or alter any copyright notices contained
-within the Program.
-
-
Each Contributor must identify itself as the originator of its
-Contribution, if any, in a manner that reasonably allows subsequent
-Recipients to identify the originator of the Contribution.
-
-
4. COMMERCIAL DISTRIBUTION
-
-
Commercial distributors of software may accept certain
-responsibilities with respect to end users, business partners and the
-like. While this license is intended to facilitate the commercial use of
-the Program, the Contributor who includes the Program in a commercial
-product offering should do so in a manner which does not create
-potential liability for other Contributors. Therefore, if a Contributor
-includes the Program in a commercial product offering, such Contributor
-("Commercial Contributor") hereby agrees to defend and
-indemnify every other Contributor ("Indemnified Contributor")
-against any losses, damages and costs (collectively "Losses")
-arising from claims, lawsuits and other legal actions brought by a third
-party against the Indemnified Contributor to the extent caused by the
-acts or omissions of such Commercial Contributor in connection with its
-distribution of the Program in a commercial product offering. The
-obligations in this section do not apply to any claims or Losses
-relating to any actual or alleged intellectual property infringement. In
-order to qualify, an Indemnified Contributor must: a) promptly notify
-the Commercial Contributor in writing of such claim, and b) allow the
-Commercial Contributor to control, and cooperate with the Commercial
-Contributor in, the defense and any related settlement negotiations. The
-Indemnified Contributor may participate in any such claim at its own
-expense.
-
-
For example, a Contributor might include the Program in a commercial
-product offering, Product X. That Contributor is then a Commercial
-Contributor. If that Commercial Contributor then makes performance
-claims, or offers warranties related to Product X, those performance
-claims and warranties are such Commercial Contributor's responsibility
-alone. Under this section, the Commercial Contributor would have to
-defend claims against the other Contributors related to those
-performance claims and warranties, and if a court requires any other
-Contributor to pay any damages as a result, the Commercial Contributor
-must pay those damages.
-
-
5. NO WARRANTY
-
-
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS
-PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
-OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION,
-ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY
-OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely
-responsible for determining the appropriateness of using and
-distributing the Program and assumes all risks associated with its
-exercise of rights under this Agreement , including but not limited to
-the risks and costs of program errors, compliance with applicable laws,
-damage to or loss of data, programs or equipment, and unavailability or
-interruption of operations.
-
-
6. DISCLAIMER OF LIABILITY
-
-
EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT
-NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
-INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
-WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
-LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR
-DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED
-HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
-
-
7. GENERAL
-
-
If any provision of this Agreement is invalid or unenforceable under
-applicable law, it shall not affect the validity or enforceability of
-the remainder of the terms of this Agreement, and without further action
-by the parties hereto, such provision shall be reformed to the minimum
-extent necessary to make such provision valid and enforceable.
-
-
If Recipient institutes patent litigation against any entity
-(including a cross-claim or counterclaim in a lawsuit) alleging that the
-Program itself (excluding combinations of the Program with other
-software or hardware) infringes such Recipient's patent(s), then such
-Recipient's rights granted under Section 2(b) shall terminate as of the
-date such litigation is filed.
-
-
All Recipient's rights under this Agreement shall terminate if it
-fails to comply with any of the material terms or conditions of this
-Agreement and does not cure such failure in a reasonable period of time
-after becoming aware of such noncompliance. If all Recipient's rights
-under this Agreement terminate, Recipient agrees to cease use and
-distribution of the Program as soon as reasonably practicable. However,
-Recipient's obligations under this Agreement and any licenses granted by
-Recipient relating to the Program shall continue and survive.
-
-
Everyone is permitted to copy and distribute copies of this
-Agreement, but in order to avoid inconsistency the Agreement is
-copyrighted and may only be modified in the following manner. The
-Agreement Steward reserves the right to publish new versions (including
-revisions) of this Agreement from time to time. No one other than the
-Agreement Steward has the right to modify this Agreement. The Eclipse
-Foundation is the initial Agreement Steward. The Eclipse Foundation may
-assign the responsibility to serve as the Agreement Steward to a
-suitable separate entity. Each new version of the Agreement will be
-given a distinguishing version number. The Program (including
-Contributions) may always be distributed subject to the version of the
-Agreement under which it was received. In addition, after a new version
-of the Agreement is published, Contributor may elect to distribute the
-Program (including its Contributions) under the new version. Except as
-expressly stated in Sections 2(a) and 2(b) above, Recipient receives no
-rights or licenses to the intellectual property of any Contributor under
-this Agreement, whether expressly, by implication, estoppel or
-otherwise. All rights in the Program not expressly granted under this
-Agreement are reserved.
-
-
This Agreement is governed by the laws of the State of New York and
-the intellectual property laws of the United States of America. No party
-to this Agreement will bring a legal action under this Agreement more
-than one year after the cause of action arose. Each party waives its
-rights to a jury trial in any resulting litigation.
Convert a Java object to a Clojure map (converting deeply).
+
+The second argument is a hash map that offers some control over the
+conversion:
+* :add-class -- if true, add :class with the actual class of the object
+ being converted -- this mimics clojure.core/bean.
+* :exceptions -- controls how getter exceptions should be handled:
+ * :group -- return an :exceptions hash map in the object that
+ contains all the properties that failed, with their exceptions,
+ * :omit -- ignore exceptions and omit the properties that caused them,
+ * :qualify -- return the exception as :<property>/exception and
+ omit the property itself,
+ * :return -- simply return the exception as the value of the property.
+* :omit -- a set of properties (keywords) to omit from the conversion
+ so that unsafe methods are not called (this applies across the whole
+ recursive/deep conversion).
Convert a Java object to a Clojure map (but do not convert deeply).
+
+The second argument is a hash map that offers some control over the
+conversion:
+* :add-class -- if true, add :class with the actual class of the object
+ being converted -- this mimics clojure.core/bean.
+* :exceptions -- controls how getter exceptions should be handled:
+ * :group -- return an :exceptions hash map in the object that
+ contains all the properties that failed, with their exceptions,
+ * :omit -- ignore exceptions and omit the properties that caused them,
+ * :qualify -- return the exception as :<property>/exception and
+ omit the property itself,
+ * :return -- simply return the exception as the value of the property.
+* :omit -- a set of properties (keywords) to omit from the conversion
+ so that unsafe methods are not called.
Convert Clojure data to an instance of the specified Java class.
+Several basic types have obvious conversions, but for a hash map
+reflection is used to set the properties. If the class is an interface, we
+can't create an instance of it, unless the Clojure map already implements it.
+
+When java.time.Instant is available (Java 8+), we can convert a hash map
+containing :nano and :epochSecond to Instant, as this is the reverse of
+Instant->map.
+
+A XMLGregorianCalendar object can be constructed from the following keys
+:year, :month, :day, :hour, :minute, :second, and :timezone.
Given a class and a hash map of properties, figure out the Builder class,
+figure out the setters for the Builder, construct an instance of it and
+produce an instance of the original class. A hash map of options may also
+be provided.
+
+Alternatively, given a class, a builder instance, a hash map of properties,
+and a hash map of options, figure out the setters for the builder class,
+and use the builder instance to produce an instance of the original class.
+
+Finally, given a class, a builder class, a builder instance (possibly of a
+different class), a hash map of properties, and a hash map of options,
+figure out the setters for the builder class, and use the builder instance
+to produce an instance of the original class.
+
+The following options may be provided:
+* :builder-class -- the class that should be used for the builder process;
+ by default we'll assume an inner class of clazz called 'Builder',
+* :builder-props -- properties used to construct and initialize an instance
+ of the builder class; defaults to an empty hash map; may have
+ :clojure.java.data/constructor as metadata to provide constructor
+ arguments for the builder instance,
+* :build-fn -- the name of the method in the Builder class to use to
+ complete the builder process and return the desired class;
+ by default we'll try to deduce it, preferring 'build' if we find
+ multiple candidates,
+* :ignore-setters? -- a flag to indicate that methods on the builder
+ class that begin with 'set' should be ignored, which may be
+ necessary to avoid ambiguous methods that look like builder properties;
+ by default 'setFooBar` will be treated as a builder property 'fooBar'
+ if it accepts a single argument and returns a builder instance.