{"id":19885241,"url":"https://github.com/dinstone/motor","last_synced_at":"2025-10-14T06:12:19.101Z","repository":{"id":57718817,"uuid":"102339846","full_name":"dinstone/motor","owner":"dinstone","description":"Motor is java launcher","archived":false,"fork":false,"pushed_at":"2020-10-12T22:50:02.000Z","size":49,"stargazers_count":1,"open_issues_count":2,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-11T18:47:07.927Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dinstone.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"license/ApacheV2.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-09-04T08:50:41.000Z","updated_at":"2019-06-05T15:26:27.000Z","dependencies_parsed_at":"2022-09-26T21:40:29.059Z","dependency_job_id":null,"html_url":"https://github.com/dinstone/motor","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/dinstone%2Fmotor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dinstone%2Fmotor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dinstone%2Fmotor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dinstone%2Fmotor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dinstone","download_url":"https://codeload.github.com/dinstone/motor/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":241313179,"owners_count":19942417,"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":[],"created_at":"2024-11-12T17:33:42.497Z","updated_at":"2025-10-14T06:12:14.069Z","avatar_url":"https://github.com/dinstone.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Motor\nMotor is a Java application launcher toolkit, that include a launcher and a maven plugin, simplify application development, packaging, deployment, elegant start and stop the application.\n\n# How\nwe can add motor plugin for the maven project,then execute: mvn clean package.\n\n```xml\n\u003cplugins\u003e\n\t   \u003cplugin\u003e\n            \u003cgroupId\u003ecom.dinstone.motor\u003c/groupId\u003e\n            \u003cartifactId\u003emotor-maven-plugin\u003c/artifactId\u003e\n            \u003cversion\u003e1.2.0\u003c/version\u003e\n            \u003cconfiguration\u003e\n                \u003cincludeBaseDirectory\u003etrue\u003c/includeBaseDirectory\u003e\n                \u003clauncher\u003e\n                    \u003cproperties\u003e\n                        \u003cproperty\u003e\n                            \u003cname\u003eXmn\u003c/name\u003e\n                            \u003cvalue\u003e128m\u003c/value\u003e\n                        \u003c/property\u003e\n                        \u003cproperty\u003e\n                            \u003cname\u003eXms\u003c/name\u003e\n                            \u003cvalue\u003e1g\u003c/value\u003e\n                        \u003c/property\u003e\n                        \u003cproperty\u003e\n                            \u003cname\u003eXmx\u003c/name\u003e\n                            \u003cvalue\u003e1g\u003c/value\u003e\n                        \u003c/property\u003e\n                        \u003cproperty\u003e\n                            \u003cname\u003elauncher.listen.enabled\u003c/name\u003e\n                            \u003cvalue\u003etrue\u003c/value\u003e\n                        \u003c/property\u003e\n                        \u003cproperty\u003e\n                            \u003cname\u003elauncher.listen.port\u003c/name\u003e\n                            \u003cvalue\u003e4444\u003c/value\u003e\n                        \u003c/property\u003e\n                    \u003c/properties\u003e\n                \u003c/launcher\u003e\n                \u003capplication\u003e\n                    \u003cactivator\u003ecom.dinstone.grape.server.ApplicationActivator\u003c/activator\u003e\n                    \u003cconfigs\u003e\n                        \u003cconfig\u003e\n                            \u003cdirectory\u003esrc/main/resources\u003c/directory\u003e\n                        \u003c/config\u003e\n                    \u003c/configs\u003e\n                    \u003cresources\u003e\n                        \u003cresource\u003e\n                            \u003cdirectory\u003ewebroot\u003c/directory\u003e\n                        \u003c/resource\u003e\n                    \u003c/resources\u003e\n                \u003c/application\u003e\n            \u003c/configuration\u003e\n            \u003cexecutions\u003e\n                \u003cexecution\u003e\n                    \u003cid\u003elauncher-package\u003c/id\u003e\n                    \u003cphase\u003epackage\u003c/phase\u003e\n                    \u003cgoals\u003e\n                        \u003cgoal\u003epublish\u003c/goal\u003e\n                    \u003c/goals\u003e\n                \u003c/execution\u003e\n            \u003c/executions\u003e\n        \u003c/plugin\u003e\n\u003c/plugins\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdinstone%2Fmotor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdinstone%2Fmotor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdinstone%2Fmotor/lists"}