Skip to content

Latest commit

 

History

History
67 lines (43 loc) · 2.2 KB

README.md

File metadata and controls

67 lines (43 loc) · 2.2 KB

Maven Auto Completion

PowerShell Gallery

Maven Auto Completion provides a simple auto completion of Maven 3 to PowerShell.

Notes

findbugs goal will remove in nearly future because FindBugs replaced to SpotBugs.

Requirements

Maven Auto Completion requires greater equal than PowerShell v6.0. Check your PowerShell version by executing $PSVersionTable.PSVersion.

In case of PowerShell v5.x, you can use auto completion by using escape sequence `(backquote) like below.

mvn install `-

Installation

1. Get module

Installing via PowerShellGet

MavenAutoCompletion is available on the PowerShell Gallery. You can install it with PowerShellGet module.

PowerShell Gallery | MavenAutoCompletion

Install-Module MavenAutoCompletion -AllowPrerelease -Force

Clone the repository

Clone the repository to your PowerShell module path. Check your module pathes by executing $env:PSModulePath.

Sample command is below.

cd ($env:PSModulePath -split ';')[0]
git clone https://github.com/krymtkts/MavenAutoCompletion

2. Import module

The command is below. Add -Force paramter when you update module.

Import-Module -Name MavenAutoCompletion -Force

Add Import-Module to your profile if you want. Check your profile by executing $profile.