{"id":19266547,"url":"https://github.com/janix520/easypackage","last_synced_at":"2026-05-17T19:02:52.568Z","repository":{"id":261530206,"uuid":"860728239","full_name":"Janix520/EasyPackage","owner":"Janix520","description":"java swing javafx gui package exe dmg maven","archived":false,"fork":false,"pushed_at":"2025-01-24T16:44:33.000Z","size":73,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-23T19:31:01.325Z","etag":null,"topics":["gui","javafx","package","swing"],"latest_commit_sha":null,"homepage":"https://github.com/Janix520/EasyPackage","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/Janix520.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":"2024-09-21T03:03:53.000Z","updated_at":"2025-01-24T16:44:37.000Z","dependencies_parsed_at":"2025-01-17T17:28:20.219Z","dependency_job_id":"186be5f0-db29-4ca8-94b0-3c4bc8c2d279","html_url":"https://github.com/Janix520/EasyPackage","commit_stats":null,"previous_names":["janix520/easypackage"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/Janix520/EasyPackage","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Janix520%2FEasyPackage","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Janix520%2FEasyPackage/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Janix520%2FEasyPackage/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Janix520%2FEasyPackage/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Janix520","download_url":"https://codeload.github.com/Janix520/EasyPackage/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Janix520%2FEasyPackage/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33151625,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-17T09:28:26.183Z","status":"ssl_error","status_checked_at":"2026-05-17T09:27:52.702Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["gui","javafx","package","swing"],"created_at":"2024-11-09T20:05:43.952Z","updated_at":"2026-05-17T19:02:52.525Z","avatar_url":"https://github.com/Janix520.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n\n# EasyPackage\n\n\u003e java swing javafx gui可以一键打包app-image、exe、msi、rpm、deb、pkg、dmg\n\n### Feature\n\n - 最小打包\n - 支持模块化和非模块化\n - 支持Springboot项目\n - 支持一键打包为windows服务\n\n### Add plugins in Maven\n\n```xml\n\n\t\u003cplugin\u003e\n\t\t\u003cgroupId\u003eio.github.janix520\u003c/groupId\u003e\n\t\t\u003cartifactId\u003emaven-easypackage-plugin\u003c/artifactId\u003e\n\t\t\u003cversion\u003e1.4.1\u003c/version\u003e\n\t\t\u003cexecutions\u003e\n\t\t\t\u003cexecution\u003e\n\t\t\t\t\u003cphase\u003epackage\u003c/phase\u003e\n\t\t\t\t\u003cgoals\u003e\n\t\t\t\t\t\u003cgoal\u003ejpackage\u003c/goal\u003e\n\t\t\t\t\u003c/goals\u003e\n\t\t\t\u003c/execution\u003e\n\t\t\u003c/executions\u003e\n\t\t\u003cconfiguration\u003e\n\t\t\t\u003c!-- 是否是最小打包，用于精简虚拟机，有的库依赖老旧的库，解析依赖会出错，true如果打包不成功，就改成false --\u003e\n\t\t\t\u003cminimum\u003etrue\u003c/minimum\u003e\n\t\t\t\u003c!--应用程序名称--\u003e\n\t\t\t\u003cname\u003e${project.artifactId}\u003c/name\u003e\n\t\t\t\u003c!--主运行类--\u003e\n\t\t\t\u003cmainClass\u003ecom.secondsearch.SecondSearchApplication\u003c/mainClass\u003e\n\t\t\t\u003c!--是否显示控制台--\u003e\n\t\t\t\u003cwinConsole\u003efalse\u003c/winConsole\u003e\n\t\t\t\u003c!--应用程序图标--\u003e \n\t\t\t\u003cicon\u003e${project.basedir}/src/main/resources/icon/icon.ico\u003c/icon\u003e\n\t\t\t\u003c!--可选app-image、exe、msi、rpm、deb、pkg、dmg，msi需要另外一个程序配合，app-image是exe绿色版，exe是安装包，其他自行搜索--\u003e\n\t\t\t\u003ctype\u003eapp-image\u003c/type\u003e\n\t\t\t\u003cappVersion\u003e1.0.0\u003c/appVersion\u003e\n\t\t\t\u003ccopyright\u003e版权\u003c/copyright\u003e\n\t\t\t\u003cvendor\u003e厂商\u003c/vendor\u003e\n\t\t\t\u003cdescription\u003e描述\u003c/description\u003e\n\t\t\t\n\t\t\t\u003c!-- 是否递归分析依赖，一般false就可以，改成true，增强打包兼容性，不过打包会变慢，不填此参数，默认false --\u003e\n\t\t\t\u003c!--\u003crecursive\u003efalse\u003c/recursive\u003e--\u003e\n\t\t\t\u003c!--\u003cjarName\u003e${project.build.finalName}.jar\u003c/jarName\u003e--\u003e\n\t\t\t\u003c!--jvm option--\u003e\n\t\t\t\u003c!--\u003cjavaOptions\u003e-Dserver.port=8888 -Djava.awt.headless=false\u003c/javaOptions\u003e--\u003e\n\t\t\t\u003c!--jar包生成目录，对应上面两个输出的libs--\u003e\n\t\t\t\u003c!--\u003clibs\u003elibs\u003c/libs\u003e--\u003e\n\t\t\u003c/configuration\u003e\n\n\t\u003c/plugin\u003e\n\t\t\t\n```\n\n### How to use\n\n```java\nmvn clean package\n```\n\n### Config\n| param | describe | required |\n|--|--|--|\n| minimum | 是否最小打包，精简虚拟机 | false |\n| name | 打包后的应用程序名称 | true |\n| mainClass | 启动类 | true |\n| type | 打包的类型，app-image、exe、msi、rpm、deb、pkg、dmg | false |\n| recursive | 是否递归分析依赖  | false |\n| winConsole | 是否打开控制台，方便debug | false |\n| icon | 应用程序图标，windows需要ico | false |\n| appVersion | 应用程序版本 | false |\n| copyright | 应用程序版权 | false |\n| vendor | 应用程序厂商 | false |\n| description | 应用程序描述，会显示在windows进程上| false |\n| javaOptions | jvm参数 | false |\n| jarName | 如果您改了带有主方法的jar名称，那需要您指定名称 | false |\n| workDirectory | 如果您改了编译目录，那workDirectory下一定要有libs | false |\n| libs | 编译后的所有jar的目录 | false |\n| includeLocale | 最小打包是否包含其他语言 | false |\n| launcherAsService | 是否打包为windows服务 | false |\n\n### Open source\nhttps://github.com/Janix520/EasyPackage\n\n### License\nApache-2.0 license\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjanix520%2Feasypackage","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjanix520%2Feasypackage","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjanix520%2Feasypackage/lists"}