├── Dockerfile ├── Jenkinsfile ├── Jenkinsfile_sonar_8apr2025 ├── Jenkinsfile_trivy_8apr2025 ├── README.md ├── deploymentfiles ├── deployment.yaml └── service.yaml ├── jenkinsfile_docker ├── pom.xml ├── src └── main │ └── webapp │ ├── WEB-INF │ └── web.xml │ └── index.jsp └── target ├── maven-archiver └── pom.properties ├── mindcircuitbatch15d-2.2.0.war └── mindcircuitbatch15d-2.2.0 ├── WEB-INF └── web.xml └── index.jsp /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopstraininghub/mindcircuit15d/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopstraininghub/mindcircuit15d/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /Jenkinsfile_sonar_8apr2025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopstraininghub/mindcircuit15d/HEAD/Jenkinsfile_sonar_8apr2025 -------------------------------------------------------------------------------- /Jenkinsfile_trivy_8apr2025: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopstraininghub/mindcircuit15d/HEAD/Jenkinsfile_trivy_8apr2025 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # mindcircuit15d - SAMPLE APP 2 | -------------------------------------------------------------------------------- /deploymentfiles/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopstraininghub/mindcircuit15d/HEAD/deploymentfiles/deployment.yaml -------------------------------------------------------------------------------- /deploymentfiles/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopstraininghub/mindcircuit15d/HEAD/deploymentfiles/service.yaml -------------------------------------------------------------------------------- /jenkinsfile_docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopstraininghub/mindcircuit15d/HEAD/jenkinsfile_docker -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopstraininghub/mindcircuit15d/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopstraininghub/mindcircuit15d/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopstraininghub/mindcircuit15d/HEAD/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=mindcircuitbatch15d 2 | groupId=com.example 3 | version=2.2.0 4 | -------------------------------------------------------------------------------- /target/mindcircuitbatch15d-2.2.0.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopstraininghub/mindcircuit15d/HEAD/target/mindcircuitbatch15d-2.2.0.war -------------------------------------------------------------------------------- /target/mindcircuitbatch15d-2.2.0/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopstraininghub/mindcircuit15d/HEAD/target/mindcircuitbatch15d-2.2.0/WEB-INF/web.xml -------------------------------------------------------------------------------- /target/mindcircuitbatch15d-2.2.0/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devopstraininghub/mindcircuit15d/HEAD/target/mindcircuitbatch15d-2.2.0/index.jsp --------------------------------------------------------------------------------