{"id":13511854,"url":"https://github.com/JavaMoney/jsr354-ri","last_synced_at":"2025-03-30T21:31:04.470Z","repository":{"id":11078462,"uuid":"13424587","full_name":"JavaMoney/jsr354-ri","owner":"JavaMoney","description":"JSR 354 - Moneta: Reference Implementation","archived":false,"fork":false,"pushed_at":"2025-03-26T04:30:19.000Z","size":5391,"stargazers_count":348,"open_issues_count":37,"forks_count":100,"subscribers_count":30,"default_branch":"master","last_synced_at":"2025-03-29T22:02:53.699Z","etag":null,"topics":["currency","java","javamoney","jcp","jsr","jsr354","moneta","money"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JavaMoney.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":["keilw"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2013-10-08T20:22:06.000Z","updated_at":"2025-03-22T18:57:40.000Z","dependencies_parsed_at":"2024-08-26T17:48:19.227Z","dependency_job_id":"71a3f036-5d57-42e3-96f8-0b5694b81474","html_url":"https://github.com/JavaMoney/jsr354-ri","commit_stats":{"total_commits":878,"total_committers":52,"mean_commits":"16.884615384615383","dds":0.6993166287015946,"last_synced_commit":"980334eaa7cdf7f791d5bf75430dd7f786a62388"},"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JavaMoney%2Fjsr354-ri","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JavaMoney%2Fjsr354-ri/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JavaMoney%2Fjsr354-ri/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JavaMoney%2Fjsr354-ri/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JavaMoney","download_url":"https://codeload.github.com/JavaMoney/jsr354-ri/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246249234,"owners_count":20747168,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["currency","java","javamoney","jcp","jsr","jsr354","moneta","money"],"created_at":"2024-08-01T03:01:13.992Z","updated_at":"2025-03-30T21:31:04.464Z","avatar_url":"https://github.com/JavaMoney.png","language":"Java","readme":"JSR 354: Money and Currency: Moneta Reference Implementation\r\n===========================================================\r\n\r\n[![Maven Central](https://img.shields.io/maven-central/v/org.javamoney/moneta.svg)](https://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.javamoney%22%20AND%20a%3A%22moneta%22)\r\n[![CircleCI](https://dl.circleci.com/status-badge/img/gh/JavaMoney/jsr354-ri/tree/master.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/JavaMoney/jsr354-ri/tree/master)\r\n[![Coverage Status](https://coveralls.io/repos/JavaMoney/jsr354-ri/badge.svg?branch=master)](https://coveralls.io/r/JavaMoney/jsr354-ri?branch=master)\r\n[![Stability: Maintenance](https://masterminds.github.io/stability/maintenance.svg)](https://masterminds.github.io/stability/maintenance.html)\r\n[![License](https://img.shields.io/badge/license-Apache2-red.svg)](http://opensource.org/licenses/apache-2.0)\r\n[![Join the chat at https://gitter.im/JavaMoney/jsr354-ri](https://img.shields.io/gitter/room/badges/shields.svg)](https://matrix.to/#/#JavaMoney_jsr354-ri:gitter.im?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\r\n\r\nMoneta is the reference implementation (RI) of the [JSR 354 Money \u0026 Currency API](http://javamoney.org) and provides:\r\n* Monetary amounts: fixed sized `FastMoney` and `Money` for big amounts.\r\n* Currency conversion and rate providers.\r\n* Custom currencies support like the Bitcoin.\r\n\r\nSee [Moneta User Guide](/moneta-core/src/main/asciidoc/userguide.adoc) for an introduction.\r\n\r\n\r\nUsage\r\n-----\r\n\r\nYou can access the RI by adding the following Maven dependencies:\r\n```xml\r\n\u003cdependency\u003e\r\n  \u003cgroupId\u003eorg.javamoney\u003c/groupId\u003e\r\n  \u003cartifactId\u003emoneta\u003c/artifactId\u003e\r\n  \u003cversion\u003e1.4.5\u003c/version\u003e\r\n  \u003ctype\u003epom\u003c/type\u003e\r\n\u003c/dependency\u003e\r\n```\r\n\r\nThe same for Gradle:\r\n```groovy\r\ncompile group: 'org.javamoney', name: 'moneta', version: '1.4.5', ext: 'pom'\r\n```\r\n\r\nSBT:\r\n```scala\r\nlibraryDependencies += \"org.javamoney\" % \"moneta\" % \"1.4.5\" pomOnly()\r\n```\r\n\r\nThe release artifacts are accessible from [Maven Central](https://mvnrepository.com/artifact/org.javamoney/moneta/).\r\n\r\n[Release notes](https://github.com/JavaMoney/jsr354-ri/releases)\r\n\r\nThe implementation supports JDK8 and later.\r\n\r\nHelp and support\r\n----------------\r\nAsk your question at StackOverflow with tag [java-money](https://stackoverflow.com/questions/tagged/java-money+jsr354) or join the [Gitter chat](https://gitter.im/orgs/JavaMoney/rooms).\r\n","funding_links":["https://github.com/sponsors/keilw"],"categories":["Java"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJavaMoney%2Fjsr354-ri","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FJavaMoney%2Fjsr354-ri","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FJavaMoney%2Fjsr354-ri/lists"}