{"id":16688977,"url":"https://github.com/roll-w/fiesta","last_synced_at":"2025-04-05T03:24:39.684Z","repository":{"id":148407543,"uuid":"528754341","full_name":"roll-w/fiesta","owner":"roll-w","description":"A Java annotation library with compile stage message.","archived":false,"fork":false,"pushed_at":"2024-03-22T13:49:19.000Z","size":82,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-10T11:41:55.996Z","etag":null,"topics":["java","java-8","java-annotation-processor","java-annotations"],"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/roll-w.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":"2022-08-25T08:08:51.000Z","updated_at":"2024-03-03T06:06:14.000Z","dependencies_parsed_at":"2024-03-22T11:09:49.696Z","dependency_job_id":"faca1b03-5dd6-490f-aab3-4e9c9f9cf015","html_url":"https://github.com/roll-w/fiesta","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roll-w%2Ffiesta","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roll-w%2Ffiesta/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roll-w%2Ffiesta/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roll-w%2Ffiesta/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/roll-w","download_url":"https://codeload.github.com/roll-w/fiesta/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247282827,"owners_count":20913437,"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":["java","java-8","java-annotation-processor","java-annotations"],"created_at":"2024-10-12T15:45:57.393Z","updated_at":"2025-04-05T03:24:39.662Z","avatar_url":"https://github.com/roll-w.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Fiesta\n[![Maven Central][mcBadge]][mcLink] [![License][liBadge]][liLink]\n\nA simple java annotations library with compile stage processing.\n## Required\n\nJDK 1.8 or higher.\n\n## Getting Started\nTo add dependencies on Fiesta using Maven, use the following:\n\n```xml\n\u003cdependencies\u003e\n    \u003c!-- Annotation Module --\u003e\n    \u003cdependency\u003e\n        \u003cgroupId\u003espace.lingu.fiesta\u003c/groupId\u003e\n        \u003cartifactId\u003efiesta-annotations\u003c/artifactId\u003e\n        \u003cversion\u003e0.2.1\u003c/version\u003e\n    \u003c/dependency\u003e\n    \n    \u003c!-- Compile-time Annotation Check Module --\u003e\n    \u003cdependency\u003e\n        \u003cgroupId\u003espace.lingu.fiesta\u003c/groupId\u003e\n        \u003cartifactId\u003efiesta-checker\u003c/artifactId\u003e\n        \u003cversion\u003e0.2.1\u003c/version\u003e\n        \u003cscope\u003eprovided\u003c/scope\u003e\n    \u003c/dependency\u003e\n\u003c/dependencies\u003e\n```\n\u003e If you don't see warning output when compiling your project via maven,\nset `\u003cshowWarnings\u003etrue\u003cshowWarnings\u003e` in the maven-compiler-plugin configuration.\n\nOr using Gradle:\n\n```gradle\ndependencies {\n    // Annotation Module\n    implementation(\"space.lingu.fiesta:fiesta-annotations:0.2.1\")\n    \n    // Compile-time Annotation Check Module\n    compileOnly(\"space.lingu.fiesta:fiesta-checker:0.2.1\")\n}\n```\n\u003e The compile-time annotation checker module is used to process annotations and output information during compilation. \n\u003e \n\u003e If you don't need the feature, it's safe not to use the dependency.\n\n\nAfter adding dependencies on Fiesta, you can use the `@Fiesta` annotation to test if it works.\n\nLike this:\n```java\n@Fiesta\npublic class Main {\n    // other code\n}\n```\nIf you have set all options and dependencies correctly then you can see the message below when compiling:\n\u003e Hello from the Fiesta!\n\nYou can use more annotations, such as `@Todo` to remind you to continue work on unfinished things, \nor `@Experimental` to remind users of the API that this is an experimental API.\n\nSincerely hope that you can improve your efficiency by using this library!\n\nTo report bugs or request a new feature, please open a new issue.\n\n# Licence\n```text\n   Copyright (C) 2022 Lingu\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   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```\n\n[liBadge]: https://img.shields.io/github/license/Roll-W/fiesta?color=569cd6\u0026style=flat-square\n[liLink]: https://github.com/Roll-W/fiesta/blob/master/LICENSE\n[mcBadge]: https://img.shields.io/maven-central/v/space.lingu.fiesta/fiesta-parent?style=flat-square\n[mcLink]: https://search.maven.org/search?q=g:space.lingu.fiesta\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froll-w%2Ffiesta","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froll-w%2Ffiesta","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froll-w%2Ffiesta/lists"}