From 461cd60fa5a212bd601dec6f9d74566b25153e90 Mon Sep 17 00:00:00 2001 From: Hkrliaison <87332835+Hkrliaison@users.noreply.github.com> Date: Tue, 27 Jul 2021 21:09:20 +0530 Subject: [PATCH] Add files via upload --- hello-world-war-master/README.md | 4 +++ hello-world-war-master/dist/hello-world.war | Bin 0 -> 2415 bytes hello-world-war-master/pom.xml | 29 ++++++++++++++++++ .../src/main/webapp/WEB-INF/web.xml | 6 ++++ .../src/main/webapp/index.jsp | 13 ++++++++ 5 files changed, 52 insertions(+) create mode 100644 hello-world-war-master/README.md create mode 100644 hello-world-war-master/dist/hello-world.war create mode 100644 hello-world-war-master/pom.xml create mode 100644 hello-world-war-master/src/main/webapp/WEB-INF/web.xml create mode 100644 hello-world-war-master/src/main/webapp/index.jsp diff --git a/hello-world-war-master/README.md b/hello-world-war-master/README.md new file mode 100644 index 0000000..2d4e291 --- /dev/null +++ b/hello-world-war-master/README.md @@ -0,0 +1,4 @@ +Hello World! (WAR-style) +=============== + +This is the simplest possible Java webapp for testing servlet container deployments. It should work on any container and requires no other dependencies or configuration. diff --git a/hello-world-war-master/dist/hello-world.war b/hello-world-war-master/dist/hello-world.war new file mode 100644 index 0000000000000000000000000000000000000000..03c6722576af9ebca4baa964bc85ffa9ab2026cb GIT binary patch literal 2415 zcmWIWW@h1H0D&^T?Ji&jl;8x?zOEsTx}JV+`T~t1dKY=Ub+yi&Ilno`;EM5sr$stm=T7K&>pF3;KUoqsMNIpE zO2y7O-9f_MLBS<+wbqKra0^W~4ic>qJ{|NKDC1>Z>~-ML%FLskshuxZ3TzaKT|Xsf z0_(FXwvTLXdt&y)Fum~eKE_N@|t_oW^vk$HUBqV z^r)MjwoQD4?G~G5te<(em>lx8FEQ*WbzRyzP5Xp*$ldeTJJ~NZJ~(u5n`sPl^$do_ zcg$aduBfno(%E9F=5kED>DAr0tgsN_V8}42b#iXtK6?x3>NrLQ27Vw73z72FB)y8< zoYo13`G*VyTGJ=|;17Sl%~@-SmRG`Smf)3Fcx9it+?iCIWo`KPd#UoRJ`eM~zwg=Z zU2T5-9h36U1X=T>m0XNRj?LAXFa2>>{WSli&2eX5ySR7O{_mfbrK&L7(qvKZ#`Rn3 zjthoLL`YtLx#yCMTJHeX1(sDmG{eTi(d|Ezf{z5qU}hM-RV9p zpHJ5$dxF2*wbE8@6ouJ)aQ?o=cH;4mPprC?P0EroOb7YglRkX0 zjPRe?DIi<&!?9t)1?>r+o`>&0e*Hcy7%-DIC>Y>LJ2$Z`H4h%+n2KdE6({HC>ZPU? zCzd6qr{dA6LqKOnYEDkRZh3xDPKs`MViDXV4u(U#+g(b(*03xG#@Rk*1_omiO)3C7 z5E!?;lYR4V8}PK9=bi9B;Yr@fb9PoNvl{PSTj<)(no*vbb2L!hyJ^Xdll%2mkM;(a zxb~~a*X^A$W8<&R>vq;9K|9}f&;6d}n#pb(&cbuW+HXtl%lE&nf6WwG5}{I5TJWe< zuC0-0zS4G`u1Wv)?v71PV&55Xu6fnZB)i>*dZu>2i;is;kE&e|`_2B*gIQ0`D7#;X z3%Su+y6fSm#^`q5RT9Zx4v89;M{zn#cvaSl5io7>9iuvKjC#5+HEEY-~>rSC788o=I@SkiSaU9obrxDj9P;*++1 zj}{q5owPXJ>@?XgdViyG<)eG@`X*dYT)H@(yi{9xCwr;Wp%v%MgC^-Oi5GjiX@}na zxD#SKqE@fX_%8P6X64Zs-dApwdDRoL`+Od2P5GnyeI;M*Vgb3NP4BFC&%YO4Ril3J z-ed*c{^kD~7`#Om)NK8BG-0t|cw&jo-I}(>FPW>;VF{H3Tn0PYm`o`G#&;r{`jHww^ z${{p!0LvVBFhew>m3g>L0+o6Qlbi^cgjoi{OvYXc!pvUM*h8Yp&@vGbg4nYg!h#l7 b{DFY(bdUvz%opIz$_6rv8w7z)^#k(&RCE@y literal 0 HcmV?d00001 diff --git a/hello-world-war-master/pom.xml b/hello-world-war-master/pom.xml new file mode 100644 index 0000000..85f2e2e --- /dev/null +++ b/hello-world-war-master/pom.xml @@ -0,0 +1,29 @@ + + 4.0.0 + com.efsavage + hello-world-war + 1.0.0 + war + Hello World Web Application Repository + Simplest possible Java Webapp + + + + + org.mortbay.jetty + jetty-maven-plugin + 8.1.5.v20120716 + + 0 + + + + org.apache.maven.plugins + maven-war-plugin + 2.1.1 + + + + + \ No newline at end of file diff --git a/hello-world-war-master/src/main/webapp/WEB-INF/web.xml b/hello-world-war-master/src/main/webapp/WEB-INF/web.xml new file mode 100644 index 0000000..5952928 --- /dev/null +++ b/hello-world-war-master/src/main/webapp/WEB-INF/web.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/hello-world-war-master/src/main/webapp/index.jsp b/hello-world-war-master/src/main/webapp/index.jsp new file mode 100644 index 0000000..ead0e51 --- /dev/null +++ b/hello-world-war-master/src/main/webapp/index.jsp @@ -0,0 +1,13 @@ + + +Hello World! + + +

Hello World!

+

+ It is now + <%= new java.util.Date() %>

+

+ You are coming from + <%= request.getRemoteAddr() %>

+ \ No newline at end of file