devops
Example heading with h2 size
Example heading with h3 size
Following is sample java code.
int i = 10;
if(i>0){
System.out.println('positive');
}
-
Git for Windows
https://git-scm.com/download/win -
Python (latest recommended)
https://www.python.org/downloads/windows/ -
Java JDK (required for Maven)
https://www.oracle.com/java/technologies/downloads/
Choose the latest JDK for Windows and follow install steps.
- Apache Maven
https://maven.apache.org/download.cgi
Download the ZIP, extract, and add its bin directory to your system PATH.
- Docker Desktop for Windows (for container tasks)
https://www.docker.com/products/docker-desktop/
Download and install (requires Windows 10/11 and WSL2 enabled).
- Optional: Jenkins for CI/CD
https://www.jenkins.io/download/
Download the Windows installer.
Installation Tips
After downloading, always “Run as Administrator” for installers.
For PATH setup (Java & Maven), search “Environment Variables” in Windows and add the correct bin folders.
After install, test in Command Prompt:
git --version
python --version
java -version
mvn -v
docker --version