I run my java source code through a batch file. The problem is, when I make any change in my source code through any text editor like notepad etc. and save the code, the changes do not reflect back when I run the code through my batch files.
Below is the sample of my batch file that I use to run my code.
cd %cd%
set classpath=%cd%\target\classes;%cd%\lib\*
echo %classpath%
echo %cd%
java org.testng.TestNG %cd%\code.xml
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" %cd%\test-output\report.html
pause