{"id":18848711,"url":"https://github.com/apache/daffodil","last_synced_at":"2025-04-09T07:04:01.290Z","repository":{"id":37460541,"uuid":"101730006","full_name":"apache/daffodil","owner":"apache","description":"Apache Daffodil","archived":false,"fork":false,"pushed_at":"2025-04-01T17:19:47.000Z","size":183240,"stargazers_count":92,"open_issues_count":20,"forks_count":73,"subscribers_count":18,"default_branch":"main","last_synced_at":"2025-04-02T05:56:42.539Z","etag":null,"topics":["daffodil"],"latest_commit_sha":null,"homepage":"https://daffodil.apache.org/","language":"Scala","has_issues":false,"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/apache.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-08-29T07:00:10.000Z","updated_at":"2025-04-01T17:19:51.000Z","dependencies_parsed_at":"2022-07-12T14:30:39.488Z","dependency_job_id":"4c64e4bd-8f84-4622-ab14-9c956ca12883","html_url":"https://github.com/apache/daffodil","commit_stats":null,"previous_names":[],"tags_count":89,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fdaffodil","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fdaffodil/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fdaffodil/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/apache%2Fdaffodil/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/apache","download_url":"https://codeload.github.com/apache/daffodil/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247730062,"owners_count":20986404,"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":["daffodil"],"created_at":"2024-11-08T03:16:55.954Z","updated_at":"2025-04-09T07:04:01.272Z","avatar_url":"https://github.com/apache.png","language":"Scala","funding_links":[],"categories":["大数据"],"sub_categories":["Spring Cloud框架"],"readme":"\u003c!--\n  Licensed to the Apache Software Foundation (ASF) under one or more\n  contributor license agreements.  See the NOTICE file distributed with\n  this work for additional information regarding copyright ownership.\n  The ASF licenses this file to You under the Apache License, Version 2.0\n  (the \"License\"); you may not use this file except in compliance with\n  the License.  You may obtain a copy of the License at\n\n      http://www.apache.org/licenses/LICENSE-2.0\n\n  Unless required by applicable law or agreed to in writing, software\n  distributed under the License is distributed on an \"AS IS\" BASIS,\n  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n  See the License for the specific language governing permissions and\n  limitations under the License.\n--\u003e\n\n\u003c!-- markdownlint-disable first-line-heading --\u003e\n\u003c!-- markdownlint-disable line-length --\u003e\n\u003c!-- markdownlint-disable no-inline-html --\u003e\n[\u003cimg src=\"https://daffodil.apache.org/assets/themes/apache/img/apache-daffodil-logo.svg\" height=\"85\" align=\"left\" alt=\"Apache Daffodil\"/\u003e][Website]\n[\u003cimg src=\"https://img.shields.io/github/actions/workflow/status/apache/daffodil/main.yml?branch=main\" align=\"right\"/\u003e][GitHub Actions]\n\u003cbr clear=\"right\" /\u003e\n[\u003cimg src=\"https://img.shields.io/codecov/c/github/apache/daffodil/main.svg\" align=\"right\"/\u003e][CodeCov]\n\u003cbr clear=\"right\" /\u003e\n[\u003cimg src=\"https://img.shields.io/maven-central/v/org.apache.daffodil/daffodil-core_2.12.svg?color=brightgreen\u0026label=version\" align=\"right\"/\u003e][Releases]\n\u003cbr clear=\"both\" /\u003e\n\nApache Daffodil is an open-source implementation of the [DFDL\nspecification] that uses DFDL data descriptions to parse fixed format\ndata into an infoset.  This infoset is commonly converted into XML or\nJSON to enable the use of well-established XML or JSON technologies\nand libraries to consume, inspect, and manipulate fixed format data in\nexisting solutions.  Daffodil is also capable of serializing or\n\"unparsing\" data back to the original data format.  The DFDL infoset\ncan also be converted directly to/from the data structures carried by\ndata processing frameworks so as to bypass any XML/JSON overheads.\n\nFor more information about Daffodil, see \u003chttps://daffodil.apache.org/\u003e.\n\n## Build Requirements\n\n* Java 8 or higher\n* sbt 0.13.8 or higher\n* C compiler C99 or higher\n* Mini-XML Version 3.0 or higher\n\nSee [BUILD.md](BUILD.md) for more details and [DEVELOP.md](DEVELOP.md)\nfor a developer guide.\n\n## Getting Started\n\n[sbt] is the officially supported tool to build Daffodil.  Below are\nsome of the more commonly used commands for Daffodil development.\n\n### Compile\n\nCompile source code:\n\n    sbt compile\n\n### Test\n\nCheck all unit tests pass:\n\n    sbt test\n\nCheck all integration tests pass:\n\n    sbt daffodil-test-integration/test\n\n### Format\n\nCheck format of source and sbt files:\n\n    sbt scalafmtCheckAll scalafmtSbtCheck\n\nReformat source and sbt files if necessary:\n\n    sbt scalafmtAll scalafmtSbt\n\n### Build\n\nBuild the Daffodil command line interface (Linux and Windows shell\nscripts in `daffodil-cli/target/universal/stage/bin/`; see the\n[Command Line Interface] documentation for details on their usage):\n\n    sbt daffodil-cli/stage\n\nPublish the Daffodil jars to a Maven repository (for Java projects) or\nIvy repository (for Scala or schema projects).\n\nMaven (for Java or mvn):\n\n    sbt publishM2\n\nIvy (for Scala or sbt):\n\n    sbt publishLocal\n\n### Check Licenses\n\nRun [Apache RAT] (license audit report in `target/rat.txt` and error\nif any unapproved licenses are found):\n\n    sbt ratCheck\n\n### Check Coverage\n\nRun [sbt-scoverage] (report in `target/scala-ver/scoverage-report/`):\n\n    sbt clean coverage test daffodil-test-integration/test\n    sbt coverageAggregate\n\n## Getting Help\n\nYou can ask questions on the dev@daffodil.apache.org or\nusers@daffodil.apache.org mailing lists.  You can report bugs via the\n[Daffodil JIRA].\n\n## License\n\nApache Daffodil is licensed under the [Apache License, v2.0].\n\n[Apache License, v2.0]: https://www.apache.org/licenses/LICENSE-2.0\n[Apache RAT]: https://creadur.apache.org/rat/\n[CodeCov]: https://app.codecov.io/gh/apache/daffodil\n[Command Line Interface]: https://daffodil.apache.org/cli/\n[DFDL specification]: https://daffodil.apache.org/docs/dfdl/\n[Daffodil JIRA]: https://issues.apache.org/jira/projects/DAFFODIL/\n[Github Actions]: https://github.com/apache/daffodil/actions?query=branch%3Amain+\n[Releases]: http://daffodil.apache.org/releases/\n[Website]: https://daffodil.apache.org/\n[sbt-scoverage]: https://github.com/scoverage/sbt-scoverage/\n[sbt]: https://www.scala-sbt.org/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fdaffodil","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapache%2Fdaffodil","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapache%2Fdaffodil/lists"}