{"id":20806506,"url":"https://github.com/beryx/badass-runtime-plugin","last_synced_at":"2025-07-11T03:05:50.700Z","repository":{"id":37271476,"uuid":"158010833","full_name":"beryx/badass-runtime-plugin","owner":"beryx","description":"Create a custom runtime image of your non-modular application","archived":false,"fork":false,"pushed_at":"2024-07-20T20:55:25.000Z","size":28173,"stargazers_count":174,"open_issues_count":51,"forks_count":25,"subscribers_count":11,"default_branch":"master","last_synced_at":"2025-06-16T03:14:03.987Z","etag":null,"topics":["gradle","gradle-plugin","jlink","jpms","runtime","runtime-image"],"latest_commit_sha":null,"homepage":"https://badass-runtime-plugin.beryx.org","language":"Groovy","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/beryx.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,"zenodo":null}},"created_at":"2018-11-17T18:02:42.000Z","updated_at":"2025-06-11T12:15:16.000Z","dependencies_parsed_at":"2024-02-04T12:55:23.442Z","dependency_job_id":"93375e93-bf92-4084-a5ca-e3820a57c6bf","html_url":"https://github.com/beryx/badass-runtime-plugin","commit_stats":null,"previous_names":[],"tags_count":50,"template":false,"template_full_name":null,"purl":"pkg:github/beryx/badass-runtime-plugin","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beryx%2Fbadass-runtime-plugin","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beryx%2Fbadass-runtime-plugin/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beryx%2Fbadass-runtime-plugin/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beryx%2Fbadass-runtime-plugin/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/beryx","download_url":"https://codeload.github.com/beryx/badass-runtime-plugin/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beryx%2Fbadass-runtime-plugin/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":264719239,"owners_count":23653542,"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":["gradle","gradle-plugin","jlink","jpms","runtime","runtime-image"],"created_at":"2024-11-17T19:20:53.085Z","updated_at":"2025-07-11T03:05:50.680Z","avatar_url":"https://github.com/beryx.png","language":"Groovy","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)\n[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://github.com/beryx/badass-runtime-plugin/blob/master/LICENSE)\n[![Build Status](https://img.shields.io/github/workflow/status/beryx/badass-runtime-plugin/Java%2011%20Gradle%20CI)](https://github.com/beryx/badass-runtime-plugin/actions?query=workflow%3A%22Java+11+Gradle+CI%22)\n\n## Badass Runtime Plugin ##\n\n##### NOTE: Looking for co-maintainers - see [this issue](https://github.com/beryx/badass-runtime-plugin/issues/135). #####\n\nUsing this Gradle plugin you can create custom runtime images for non-modularized applications.\nThe plugin also lets you create an application installer with the [jpackage](https://openjdk.java.net/jeps/392) tool.\n\n\n:bulb: For modularized applications use the [Badass-JLink plugin](https://badass-jlink-plugin.beryx.org/releases/latest/).\n\nThe plugin offers several tasks, such as: `runtime`, `runtimeZip`, `suggestModules`, or `jpackage`.\nIt also adds an extension with the name `runtime` to let you configure various aspects of its operation.\nA simple example configuration is shown below:\n\n```\nruntime {\n    options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages']\n    modules = ['java.naming', 'java.xml']\n}\n```\n\nThe following projects illustrate how to use this plugin to create custom runtime images and/or platform-specific installers:\n- [badass-runtime-example](https://github.com/beryx-gist/badass-runtime-example) - a 'Hello world' application using slf4j and logback.\n- [badass-runtime-example-javafx](https://github.com/beryx-gist/badass-runtime-example-javafx) - a 'Hello world' JavaFX application.\n- [badass-runtime-example-javafx-cds](https://github.com/beryx-gist/badass-runtime-example-javafx-cds) - a 'Hello world' JavaFX application with Class Data Sharing.\n- [badass-runtime-example-kotlin-tornadofx](https://github.com/beryx-gist/badass-runtime-example-kotlin-tornadofx) - a 'Hello world' application written in Kotlin using [tornadofx](https://github.com/edvin/tornadofx).\n- [badass-runtime-spring-petclinic](https://github.com/beryx-gist/badass-runtime-spring-petclinic) - creates a custom runtime image of the [Spring PetClinic](https://github.com/spring-projects/spring-petclinic) application.\n- [badass-runtime-pacman](https://github.com/beryx-gist/badass-runtime-pacman) - creates a custom runtime image and an application installer for the Pacman game available in the [FXGLGames](https://github.com/AlmasB/FXGLGames) repository.\n- [bespoke-images](https://github.com/PaulWinstone/demoModule) - creates multiple executable images, each one customized for a different client.\n\n\n\n### Please [read the documentation](https://badass-runtime-plugin.beryx.org/releases/latest/) before using this plugin.\n\nSee the [list of all releases](https://github.com/beryx/badass-runtime-plugin/blob/gh-pages/releases.md) if you use an older version of this plugin. \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fberyx%2Fbadass-runtime-plugin","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fberyx%2Fbadass-runtime-plugin","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fberyx%2Fbadass-runtime-plugin/lists"}