This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $global:packages = @( | |
| @{ | |
| Name = "Maven" | |
| Description = "Ferramenta de build para Java. Utilizada para compilar e empacotar o projeto." | |
| Url = "https://dlcdn.apache.org/maven/maven-3/3.9.9/binaries/apache-maven-3.9.9-bin.zip" | |
| TargetFolder = "apache-maven-3.9.9" | |
| IsOptional = $false | |
| }, | |
| @{ | |
| Name = "Maven Daemon (mvnd)" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # install.ps1 | |
| # Simple installer script for AMH2W module | |
| [CmdletBinding()] | |
| param( | |
| [string]$InstallPath = $(($env:PSModulePath -split ';')[0] + "\AMH2W") | |
| ) | |
| $ErrorActionPreference = 'Stop' | |
| $ScriptPath = Split-Path -Parent $MyInvocation.MyCommand.Path |
OlderNewer