- Java 17 or higher (Download)
Maven is only required if you want to build from source.
Go to GitHub Releases and download:
- The Source code (ZIP) — contains the install scripts
- The
projectmanager-X.Y.Z.jarfile — the pre-built application
Extract the ZIP file, then copy the downloaded projectmanager-X.Y.Z.jar into the extracted folder (next to the scripts/ directory).
Windows (PowerShell):
powershell -ExecutionPolicy Bypass -File .\scripts\install.ps1Why
-ExecutionPolicy Bypass? Windows blocks scripts downloaded from the internet by default. This flag allows the script to run safely. The script only creates apm.batwrapper in%USERPROFILE%\binand adds it to your PATH.
Linux/Mac:
chmod +x scripts/install.sh
./scripts/install.shClose and reopen your terminal/PowerShell.
pm help
pm version- Java 17 or higher
- Maven 3.6 or higher
git clone https://github.com/SoftDryzz/ProjectManager.git
cd ProjectManager
mvn clean packageWindows (PowerShell):
powershell -ExecutionPolicy Bypass -File .\scripts\install.ps1Linux/Mac:
chmod +x scripts/install.sh
./scripts/install.shpm help
pm version# Register a project
pm add myproject --path /path/to/project
# List projects
pm list
# Build a project
pm build myproject
# Run a project
pm run myproject
# Diagnose environment
pm doctorThis is a Windows Execution Policy error. Run the installer with:
powershell -ExecutionPolicy Bypass -File .\scripts\install.ps1Unblock-File .\scripts\install.ps1
.\scripts\install.ps1Install Java 17+ from Adoptium or via winget:
winget install EclipseAdoptium.Temurin.17.JDKWindows:
Remove-Item $env:USERPROFILE\bin\pm.batLinux/Mac:
rm ~/bin/pmThen remove ~/bin from your PATH in .bashrc or .zshrc.