{"id":13806190,"url":"https://github.com/smoketurner/dropwizard-riak","last_synced_at":"2025-05-13T21:32:40.283Z","repository":{"id":142007564,"uuid":"55263635","full_name":"smoketurner/dropwizard-riak","owner":"smoketurner","description":"Dropwizard Riak Support","archived":true,"fork":false,"pushed_at":"2019-11-29T12:20:24.000Z","size":1098,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-06-21T18:09:18.324Z","etag":null,"topics":["dropwizard","dropwizard-riak","java","riak"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/smoketurner.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null},"funding":{"github":"jplock","patreon":"jplock","open_collective":null,"ko_fi":null,"tidelift":null,"custom":null}},"created_at":"2016-04-01T21:31:37.000Z","updated_at":"2023-01-28T16:22:33.000Z","dependencies_parsed_at":"2024-01-03T02:24:56.899Z","dependency_job_id":"cb2e335f-1b68-4684-902b-c924b631a30b","html_url":"https://github.com/smoketurner/dropwizard-riak","commit_stats":null,"previous_names":[],"tags_count":26,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smoketurner%2Fdropwizard-riak","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smoketurner%2Fdropwizard-riak/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smoketurner%2Fdropwizard-riak/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/smoketurner%2Fdropwizard-riak/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/smoketurner","download_url":"https://codeload.github.com/smoketurner/dropwizard-riak/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":213870459,"owners_count":15650178,"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":["dropwizard","dropwizard-riak","java","riak"],"created_at":"2024-08-04T01:01:08.675Z","updated_at":"2024-08-04T01:05:51.197Z","avatar_url":"https://github.com/smoketurner.png","language":"Java","funding_links":["https://github.com/sponsors/jplock","https://patreon.com/jplock","https://www.patreon.com/bePatron?u=9567343"],"categories":["Open Source"],"sub_categories":["Data Stores"],"readme":"Dropwizard Riak\n===============\n[![Build Status](https://travis-ci.org/smoketurner/dropwizard-riak.svg?branch=master)](https://travis-ci.org/smoketurner/dropwizard-riak)\n[![Maven Central](https://img.shields.io/maven-central/v/com.smoketurner.dropwizard/dropwizard-riak.svg?style=flat-square)](https://maven-badges.herokuapp.com/maven-central/com.smoketurner.dropwizard/dropwizard-riak/)\n[![GitHub license](https://img.shields.io/github/license/smoketurner/dropwizard-riak.svg?style=flat-square)](https://github.com/smoketurner/dropwizard-riak/tree/master)\n[![Become a Patron](https://img.shields.io/badge/Patron-Patreon-red.svg)](https://www.patreon.com/bePatron?u=9567343)\n\nA bundle for accessing [Riak](http://basho.com/products/riak-kv/) in Dropwizard applications using [riak-java-client](https://github.com/basho/riak-java-client).\n\nUsage\n-----\n\nWithin your `Configuration` class, add the following:\n\n```java\n@Valid\n@NotNull\nprivate final RiakFactory riak = new RiakFactory();\n\n@JsonProperty\npublic RiakFactory getRiakFactory() {\n    return riak;\n}\n```\n\nThen with your `Application` class, you can access a `RiakClient` by doing the following:\n\n```java\n@Override\npublic void initialize(Bootstrap\u003cMyConfiguration\u003e bootstrap) {\n    bootstrap.addBundle(new RiakBundle\u003cMyConfiguration\u003e() {\n        @Override\n        public RiakFactory getRiakFactory(MyConfiguration configuration) {\n            return configuration.getRiakFactory();\n        }\n    });\n}\n\n@Override\npublic void run(MyConfiguration configuration, Environment environment) throws Exception {\n    RiakClient client = configuration.getRiakFactory().build();\n}\n```\n\nMaven Artifacts\n---------------\n\nThis project is available on Maven Central. To add it to your project simply add the following dependencies to your `pom.xml`:\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.smoketurner.dropwizard\u003c/groupId\u003e\n    \u003cartifactId\u003edropwizard-riak\u003c/artifactId\u003e\n    \u003cversion\u003e1.3.7-1\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nSupport\n-------\n\nPlease file bug reports and feature requests in [GitHub issues](https://github.com/smoketurner/dropwizard-riak/issues).\n\n\nLicense\n-------\n\nCopyright (c) 2018 Smoke Turner, LLC\n\nThis library is licensed under the Apache License, Version 2.0.\n\nSee http://www.apache.org/licenses/LICENSE-2.0.html or the LICENSE file in this repository for the full license text.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmoketurner%2Fdropwizard-riak","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsmoketurner%2Fdropwizard-riak","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsmoketurner%2Fdropwizard-riak/lists"}