{"id":20569546,"url":"https://github.com/beanio/beanio","last_synced_at":"2025-04-06T14:12:24.101Z","repository":{"id":29459154,"uuid":"32995583","full_name":"beanio/beanio","owner":"beanio","description":"BeanIO 3, a Java library for marshalling and unmarshalling bean objects from XML, CSV, delimited and fixed length stream formats. ","archived":false,"fork":false,"pushed_at":"2025-02-07T09:28:48.000Z","size":9297,"stargazers_count":52,"open_issues_count":32,"forks_count":28,"subscribers_count":8,"default_branch":"main","last_synced_at":"2025-03-30T13:08:25.422Z","etag":null,"topics":["csv","flat-file","flatfile","java","library","marshalling","unmarshalling","xml","xml-mapping"],"latest_commit_sha":null,"homepage":"https://beanio.github.io","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/beanio.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.txt","contributing":null,"funding":null,"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}},"created_at":"2015-03-27T16:00:18.000Z","updated_at":"2025-03-28T18:33:53.000Z","dependencies_parsed_at":"2024-06-07T18:11:24.005Z","dependency_job_id":"2d166992-bb3d-4c7a-a71b-09865410c0c3","html_url":"https://github.com/beanio/beanio","commit_stats":null,"previous_names":[],"tags_count":44,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beanio%2Fbeanio","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beanio%2Fbeanio/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beanio%2Fbeanio/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beanio%2Fbeanio/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/beanio","download_url":"https://codeload.github.com/beanio/beanio/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247492557,"owners_count":20947545,"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":["csv","flat-file","flatfile","java","library","marshalling","unmarshalling","xml","xml-mapping"],"created_at":"2024-11-16T05:08:42.696Z","updated_at":"2025-04-06T14:12:24.085Z","avatar_url":"https://github.com/beanio.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# \u0026nbsp;\u003cimg src=\"https://raw.githubusercontent.com/beanio/beanio.github.io/main/static/img/logo.svg\" height=\"25\"/\u003e BeanIO ![](https://img.shields.io/maven-central/v/com.github.beanio/beanio) [![Java CI](https://github.com/beanio/beanio/actions/workflows/gradle.yml/badge.svg)](https://github.com/beanio/beanio/actions/workflows/gradle.yml) [![Maintainability Rating](https://sonarcloud.io/api/project_badges/measure?project=beanio\u0026metric=sqale_rating)](https://sonarcloud.io/dashboard?id=beanio) [![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=beanio\u0026metric=security_rating)](https://sonarcloud.io/dashboard?id=beanio) [![Coverage](https://sonarcloud.io/api/project_badges/measure?project=beanio\u0026metric=coverage)](https://sonarcloud.io/dashboard?id=beanio)\n\nA Java library for marshalling and unmarshalling bean objects from XML, CSV, delimited and fixed length stream formats.\n\n## Installation\n\nIf you're coming from BeanIO 2.x, please note the new groupId `com.github.beanio`. Package names remain the same as\nbefore (`org.beanio.*`).\n\n### Maven\n\n\u003cdetails\u003e\n  \u003csummary\u003eTo use snapshot versions, configure the following repository:\u003c/summary\u003e\n\n```xml\n\u003crepositories\u003e\n    \u003crepository\u003e\n        \u003cid\u003eossrh\u003c/id\u003e\n        \u003curl\u003ehttps://s01.oss.sonatype.org/content/repositories/snapshots/\u003c/url\u003e\n        \u003csnapshots\u003e\n            \u003cenabled\u003etrue\u003c/enabled\u003e\n        \u003c/snapshots\u003e\n        \u003creleases\u003e\n            \u003cenabled\u003efalse\u003c/enabled\u003e\n        \u003c/releases\u003e\n    \u003c/repository\u003e\n\u003c/repositories\u003e\n```\n\u003c/details\u003e\n\nAdd the following dependency to your `pom.xml`:\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.beanio\u003c/groupId\u003e\n    \u003cartifactId\u003ebeanio\u003c/artifactId\u003e\n    \u003cversion\u003e3.2.1\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### Gradle\n\n\u003cdetails\u003e\n  \u003csummary\u003eTo use snapshot versions, configure the following repository:\u003c/summary\u003e\n\n```groovy\nrepositories {\n    maven {\n        url 'https://s01.oss.sonatype.org/content/repositories/snapshots'\n    }\n}\n```\n\u003c/details\u003e\n\nAdd the following dependency to your `build.gradle`:\n\n```groovy\nimplementation 'com.github.beanio:beanio:3.2.1'\n```\n\n## What's new in v3?\n\nSee [changelog.txt](changelog.txt)\n\n## Project status\n\nThis is a fork of the [original BeanIO library](https://github.com/kevinseim/beanio). It combines :\n\n* the legacy SVN codebase for 2.x that was hosted at https://code.google.com/p/beanio/\n* \"the future BeanIO 3.x\" that was started at https://github.com/kevinseim/beanio\n* several fixes from other forks (see commit messages for more info)\n\nThe website for version 3.x is available at https://beanio.github.io.\n\nThe website for version 2.x is available at http://www.beanio.org.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeanio%2Fbeanio","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbeanio%2Fbeanio","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeanio%2Fbeanio/lists"}