├── README.md ├── pom.xml ├── src └── main │ └── webapp │ ├── Installations │ ├── Jenkins │ │ └── Jenkins Installation on Amazon-Linux-2.md │ └── apache tomcat │ │ └── Tomcat Installation on Amazon-Linux-2.md │ ├── WEB-INF │ └── web.xml │ ├── image │ └── image.jpg │ └── index.jsp └── target ├── maven-archiver └── pom.properties └── webapp ├── WEB-INF ├── lib │ ├── jakarta.el-api-5.0.0.jar │ ├── jakarta.servlet.jsp.jstl-3.0.1.jar │ └── jakarta.servlet.jsp.jstl-api-3.0.0.jar └── web.xml ├── image └── image.jpg └── index.jsp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilRaj-2003/java-web/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilRaj-2003/java-web/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/webapp/Installations /Jenkins/Jenkins Installation on Amazon-Linux-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilRaj-2003/java-web/HEAD/src/main/webapp/Installations /Jenkins/Jenkins Installation on Amazon-Linux-2.md -------------------------------------------------------------------------------- /src/main/webapp/Installations /apache tomcat/Tomcat Installation on Amazon-Linux-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilRaj-2003/java-web/HEAD/src/main/webapp/Installations /apache tomcat/Tomcat Installation on Amazon-Linux-2.md -------------------------------------------------------------------------------- /src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilRaj-2003/java-web/HEAD/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /src/main/webapp/image/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilRaj-2003/java-web/HEAD/src/main/webapp/image/image.jpg -------------------------------------------------------------------------------- /src/main/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilRaj-2003/java-web/HEAD/src/main/webapp/index.jsp -------------------------------------------------------------------------------- /target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- 1 | artifactId=webapp 2 | groupId=com.myproject 3 | version=1.0-SNAPSHOT 4 | -------------------------------------------------------------------------------- /target/webapp/WEB-INF/lib/jakarta.el-api-5.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilRaj-2003/java-web/HEAD/target/webapp/WEB-INF/lib/jakarta.el-api-5.0.0.jar -------------------------------------------------------------------------------- /target/webapp/WEB-INF/lib/jakarta.servlet.jsp.jstl-3.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilRaj-2003/java-web/HEAD/target/webapp/WEB-INF/lib/jakarta.servlet.jsp.jstl-3.0.1.jar -------------------------------------------------------------------------------- /target/webapp/WEB-INF/lib/jakarta.servlet.jsp.jstl-api-3.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilRaj-2003/java-web/HEAD/target/webapp/WEB-INF/lib/jakarta.servlet.jsp.jstl-api-3.0.0.jar -------------------------------------------------------------------------------- /target/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilRaj-2003/java-web/HEAD/target/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /target/webapp/image/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilRaj-2003/java-web/HEAD/target/webapp/image/image.jpg -------------------------------------------------------------------------------- /target/webapp/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NikhilRaj-2003/java-web/HEAD/target/webapp/index.jsp --------------------------------------------------------------------------------