├── .classpath ├── .gitignore ├── .project ├── Dockerfile ├── Jenkinsfile ├── Jenkinsfile_1.0 ├── Jenkinsfile_Docker_Local ├── Jenkinsfile_Docker_Remote ├── README.md ├── pom.xml └── src └── main ├── java └── com │ └── ranjitswain │ └── HelloWorldBacking.java ├── log4j └── log4j.properties └── webapp ├── WEB-INF ├── examples-config.xml └── web.xml ├── helloWorld.xhtml ├── index.jsp ├── page2.xhtml └── template.xhtml /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/.project -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/Dockerfile -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /Jenkinsfile_1.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/Jenkinsfile_1.0 -------------------------------------------------------------------------------- /Jenkinsfile_Docker_Local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/Jenkinsfile_Docker_Local -------------------------------------------------------------------------------- /Jenkinsfile_Docker_Remote: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/Jenkinsfile_Docker_Remote -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/com/ranjitswain/HelloWorldBacking.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/src/main/java/com/ranjitswain/HelloWorldBacking.java -------------------------------------------------------------------------------- /src/main/log4j/log4j.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/src/main/log4j/log4j.properties -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/examples-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/src/main/webapp/WEB-INF/examples-config.xml -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/helloWorld.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/src/main/webapp/helloWorld.xhtml -------------------------------------------------------------------------------- /src/main/webapp/index.jsp: -------------------------------------------------------------------------------- 1 | <%@ page session="false"%> 2 | <% 3 | response.sendRedirect("helloWorld.jsf"); 4 | %> -------------------------------------------------------------------------------- /src/main/webapp/page2.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/src/main/webapp/page2.xhtml -------------------------------------------------------------------------------- /src/main/webapp/template.xhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranjit4github/devOpsWeb/HEAD/src/main/webapp/template.xhtml --------------------------------------------------------------------------------