Hello, I'm trying to set up the command prompt to where it can run Notepad++ and Maven, but I'm having issues and not sure what I'm doing wrong? These are the messages that keep displaying when I try to run them:
"'mvn' is not recognized as an internal or external command, operable program or batch file."```
I created a batch file called setenv.bat and have it set up like this:
```@echo off
SET TOOLS HOME=c:\projects\tools
SET JAVA_HOME=c:\projects\tools\java\jdk-11.0.18
SET M2_HOME=%TOOLS_HOME%\apache-maven-3.9.1
SET PATH=%JAVA_HOME%\bin;%PATH%
SET PATH=%M2_HOME%\bin;%PATH%
SET PATH=%TOOLS_HOME%\Notepad++;%PATH%
SET CLASSPATH=.;```