OneCompiler

devops

63

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');
}

devoops slip.pdf

devops-11 db.pdf

  1. Git for Windows
    https://git-scm.com/download/win

  2. Python (latest recommended)
    https://www.python.org/downloads/windows/

  3. Java JDK (required for Maven)
    https://www.oracle.com/java/technologies/downloads/

Choose the latest JDK for Windows and follow install steps.

  1. Apache Maven
    https://maven.apache.org/download.cgi

Download the ZIP, extract, and add its bin directory to your system PATH.

  1. Docker Desktop for Windows (for container tasks)
    https://www.docker.com/products/docker-desktop/

Download and install (requires Windows 10/11 and WSL2 enabled).

  1. 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