diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b1c13f4 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +target/ +*.log diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..720fb09 --- /dev/null +++ b/pom.xml @@ -0,0 +1,90 @@ + + + 4.0.0 + + com.demo + struts2-demo + 1.0.0-SNAPSHOT + war + + Struts2 Demo Lab + Classic Struts2 learning project packaged as a runnable Maven WAR. + + + UTF-8 + 17 + 2.5.33 + 9.4.54.v20240208 + + + + + org.apache.struts + struts2-core + ${struts2.version} + + + org.apache.struts + struts2-json-plugin + ${struts2.version} + + + commons-fileupload + commons-fileupload + 1.5 + + + javax.servlet + javax.servlet-api + 4.0.1 + provided + + + + + ${project.basedir}/web/WEB-INF/classes + + + ${project.basedir}/web/WEB-INF/classes + + **/*.java + + + + + + + org.apache.maven.plugins + maven-compiler-plugin + 3.11.0 + + ${maven.compiler.release} + + + + + org.apache.maven.plugins + maven-war-plugin + 3.4.0 + + ${project.basedir}/web + WEB-INF/classes/**/*.java + + + + + org.eclipse.jetty + jetty-maven-plugin + ${jetty.version} + + 0 + + / + + + + + +