{"id":30305386,"url":"https://github.com/valkryst/jiconbutton","last_synced_at":"2025-08-17T08:09:15.288Z","repository":{"id":297324708,"uuid":"989375782","full_name":"Valkryst/JIconButton","owner":"Valkryst","description":"A Java Swing component designed to display an Icon on a JButton and to automatically resize it to fit within the button's bounds as it resizes.","archived":false,"fork":false,"pushed_at":"2025-07-09T14:06:25.000Z","size":33,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-09T15:24:50.077Z","etag":null,"topics":["button","fonticon","fonticons","icon","java","jbutton","swing","swing-gui"],"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/Valkryst.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE.md","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,"zenodo":null},"funding":{"github":"Valkryst"}},"created_at":"2025-05-24T01:18:00.000Z","updated_at":"2025-07-09T14:06:22.000Z","dependencies_parsed_at":"2025-06-05T04:41:30.999Z","dependency_job_id":"d9695b3a-cb29-48bc-b579-e18a853423bc","html_url":"https://github.com/Valkryst/JIconButton","commit_stats":null,"previous_names":["valkryst/jiconbutton"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Valkryst/JIconButton","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Valkryst%2FJIconButton","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Valkryst%2FJIconButton/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Valkryst%2FJIconButton/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Valkryst%2FJIconButton/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Valkryst","download_url":"https://codeload.github.com/Valkryst/JIconButton/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Valkryst%2FJIconButton/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270820793,"owners_count":24651534,"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","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["button","fonticon","fonticons","icon","java","jbutton","swing","swing-gui"],"created_at":"2025-08-17T08:09:14.555Z","updated_at":"2025-08-17T08:09:15.276Z","avatar_url":"https://github.com/Valkryst.png","language":"Java","funding_links":["https://github.com/sponsors/Valkryst"],"categories":[],"sub_categories":[],"readme":"`JIconButton` is a Java Swing component designed to display an [Icon](https://docs.oracle.com/en/java/javase/24/docs/api/java.desktop/javax/swing/Icon.html)\nand to automatically resize the Icon to fit within the button's bounds. It can be used with the following subclasses of\nthe Icon class:\n\n* [FontIcon](https://github.com/kordamp/ikonli/blob/master/core/ikonli-swing/src/main/java/org/kordamp/ikonli/swing/FontIcon.java) from [ikonli](https://github.com/kordamp/ikonli)\n* [ImageIcon](https://docs.oracle.com/en/java/javase/24/docs/api/java.desktop/javax/swing/ImageIcon.html)\n\n## Table of Contents\n\n* [Installation](https://github.com/Valkryst/JIconButton#installation)\n    * [Gradle](https://github.com/Valkryst/JIconButton#-gradle)\n    * [Maven](https://github.com/Valkryst/JIconButton#-maven)\n    * [sbt](https://github.com/Valkryst/JIconButton#-scala-sbt)\n\n## Installation\n\nJIconButton is hosted on the [JitPack package repository](https://jitpack.io/#Valkryst/JIconButton)\nwhich supports Gradle, Maven, and sbt.\n\n### ![Gradle](https://i.imgur.com/qtc6bXq.png?1) Gradle\n\nAdd JitPack to your `build.gradle` at the end of repositories.\n\n```\nallprojects {\n\trepositories {\n\t\t...\n\t\tmaven { url 'https://jitpack.io' }\n\t}\n}\n```\n\nAdd JIconButton as a dependency.\n\n```\ndependencies {\n\timplementation 'com.github.Valkryst:JIconButton:2025.5.23'\n}\n```\n\n### ![Maven](https://i.imgur.com/2TZzobp.png?1) Maven\n\nAdd JitPack as a repository.\n\n``` xml\n\u003crepositories\u003e\n    \u003crepository\u003e\n        \u003cid\u003ejitpack.io\u003c/id\u003e\n        \u003curl\u003ehttps://jitpack.io\u003c/url\u003e\n    \u003c/repository\u003e\n\u003c/repositories\u003e\n```\nAdd JIconButton as a dependency.\n\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ecom.github.Valkryst\u003c/groupId\u003e\n    \u003cartifactId\u003eJIconButton\u003c/artifactId\u003e\n    \u003cversion\u003e2025.5.23\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n### ![Scala SBT](https://i.imgur.com/Nqv3mVd.png?1) Scala SBT\n\nAdd JitPack as a resolver.\n\n```\nresolvers += \"jitpack\" at \"https://jitpack.io\"\n```\n\nAdd JIconButton as a dependency.\n\n```\nlibraryDependencies += \"com.github.Valkryst\" % \"JIconButton\" % \"2025.5.23\"\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvalkryst%2Fjiconbutton","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvalkryst%2Fjiconbutton","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvalkryst%2Fjiconbutton/lists"}