{"id":24716535,"url":"https://github.com/pgebert/powershell-gradle-spring-boot-aliases","last_synced_at":"2026-04-09T02:32:08.542Z","repository":{"id":208294716,"uuid":"721037824","full_name":"pgebert/powershell-gradle-spring-boot-aliases","owner":"pgebert","description":":octocat: Powershell aliases for spring boot projects build with gradle.","archived":false,"fork":false,"pushed_at":"2023-11-22T17:52:46.000Z","size":9,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-04T23:44:52.818Z","etag":null,"topics":["aliases","gradle","java","kotlin","powershell","spring-boot"],"latest_commit_sha":null,"homepage":"https://www.powershellgallery.com/packages/gradle-spring-boot-aliases","language":"PowerShell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pgebert.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}},"created_at":"2023-11-20T08:28:01.000Z","updated_at":"2023-11-20T18:35:15.000Z","dependencies_parsed_at":"2023-11-20T20:01:07.941Z","dependency_job_id":null,"html_url":"https://github.com/pgebert/powershell-gradle-spring-boot-aliases","commit_stats":null,"previous_names":["pgebert/powershell-gradle-spring-boot-aliases"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/pgebert/powershell-gradle-spring-boot-aliases","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgebert%2Fpowershell-gradle-spring-boot-aliases","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgebert%2Fpowershell-gradle-spring-boot-aliases/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgebert%2Fpowershell-gradle-spring-boot-aliases/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgebert%2Fpowershell-gradle-spring-boot-aliases/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pgebert","download_url":"https://codeload.github.com/pgebert/powershell-gradle-spring-boot-aliases/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pgebert%2Fpowershell-gradle-spring-boot-aliases/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31582652,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"online","status_checked_at":"2026-04-09T02:00:06.848Z","response_time":112,"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":["aliases","gradle","java","kotlin","powershell","spring-boot"],"created_at":"2025-01-27T09:13:00.522Z","updated_at":"2026-04-09T02:32:08.526Z","avatar_url":"https://github.com/pgebert.png","language":"PowerShell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gradle Spring Boot aliases for PowerShell\n[![license](https://img.shields.io/github/license/pgebert/powershell-gradle-spring-boot-aliases.svg?style=flat-square)](./LICENSE)\n[![PowerShell Gallery](https://img.shields.io/powershellgallery/v/gradle-spring-boot-aliases.svg?style=flat-square)](https://www.powershellgallery.com/packages/gradle-spring-boot-aliases/)\n[![PowerShell Gallery](https://img.shields.io/powershellgallery/dt/gradle-spring-boot-aliases.svg?style=flat-square)](https://www.powershellgallery.com/packages/gradle-spring-boot-aliases/)\n\nA [PowerShell](https://microsoft.com/powershell) module that provides aliases for the most common commands for [Spring Boot](https://spring.io/projects/spring-boot) projects build with [Gradle](https://docs.gradle.org/).\n\n\u003e ℹ️ This module will replace some built-in PowerShell aliases with our Gradle Spring Boot aliases to **prevent** conflicts.\n\n## 💻 Prerequisite\n\n✔ Spring Boot project build with [Gradle](https://docs.gradle.org/)\n\n\n## ⚙️ Installation\n\nInstall from [PowerShell Gallery](https://www.powershellgallery.com/packages/gradle-spring-boot-aliases/) using the following powershell command:\n\n```powershell\nInstall-Module gradle-spring-boot-aliases -Scope CurrentUser -AllowClobber\n```\n\nAdd below command into your `PowerShell profile` file:\n\n```powershell\nImport-Module gradle-spring-boot-aliases -DisableNameChecking\n```\n\nRestart your powershell and now you can use gradle-spring-boot aliases. 🚀\n\n## 👉 Additional notes\n\n\nIf you haven't allowed script execution policy, set your script execution policy to `RemoteSigned` or `Unrestricted`.\n\n```powershell\nSet-ExecutionPolicy RemoteSigned -Scope CurrentUser\n```\n\nIf you don't have PowerShell profile yet, create it with below command!\n\n```powershell\nNew-Item -ItemType File $profile\n```\n\n## 🚀 Supported Aliases\n\nThe following aliases are currently implemented:\n\n| Alias  | Command            |\n|--------|--------------------|\n| `gw`   | `gradlew`          |\n| `gwa`  | `gradlew assemble` |\n| `gwb`  | `gradlew build`    |\n| `gwc`  | `gradlew clean`    |\n| `gwr`  | `gradlew bootRun`  |\n| `gwt`  | `gradlew allTests` |\n| `gwst` | `gradlew --status` |\n\n\n# Miscellaneous\n\n## 🤝 Contributing\n\nContributions, [issues](https://github.com/pgebert/powershell-gradle-spring-boot-aliases/issues) and feature requests are welcome!\n\n## Show your support\n\nGive a ⭐️ if this project helped you!\n\n## 📝 License\n\nCopyright © 2023 [pgebert](https://github.com/pgebert).  \nThis project is licensed under [MIT](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpgebert%2Fpowershell-gradle-spring-boot-aliases","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpgebert%2Fpowershell-gradle-spring-boot-aliases","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpgebert%2Fpowershell-gradle-spring-boot-aliases/lists"}