├── .gitignore ├── README.md ├── struts-2.3-any-results ├── any-results │ ├── pom.xml │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── apache │ │ │ └── struts │ │ │ └── helloworld │ │ │ └── action │ │ │ └── MainAction.java │ │ ├── resources │ │ ├── log4j2.xml │ │ └── struts.xml │ │ └── webapp │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── WEB-INF │ │ └── web.xml │ │ ├── confidential.jsp │ │ └── login.jsp └── pom.xml └── struts-2.5-any-results ├── any-results ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── apache │ │ └── struts │ │ └── helloworld │ │ └── action │ │ └── MainAction.java │ ├── resources │ ├── log4j2.xml │ └── struts.xml │ └── webapp │ ├── META-INF │ └── MANIFEST.MF │ ├── WEB-INF │ └── web.xml │ ├── confidential.jsp │ └── login.jsp └── pom.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/README.md -------------------------------------------------------------------------------- /struts-2.3-any-results/any-results/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/struts-2.3-any-results/any-results/pom.xml -------------------------------------------------------------------------------- /struts-2.3-any-results/any-results/src/main/java/org/apache/struts/helloworld/action/MainAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/struts-2.3-any-results/any-results/src/main/java/org/apache/struts/helloworld/action/MainAction.java -------------------------------------------------------------------------------- /struts-2.3-any-results/any-results/src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/struts-2.3-any-results/any-results/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /struts-2.3-any-results/any-results/src/main/resources/struts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/struts-2.3-any-results/any-results/src/main/resources/struts.xml -------------------------------------------------------------------------------- /struts-2.3-any-results/any-results/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /struts-2.3-any-results/any-results/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/struts-2.3-any-results/any-results/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /struts-2.3-any-results/any-results/src/main/webapp/confidential.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/struts-2.3-any-results/any-results/src/main/webapp/confidential.jsp -------------------------------------------------------------------------------- /struts-2.3-any-results/any-results/src/main/webapp/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/struts-2.3-any-results/any-results/src/main/webapp/login.jsp -------------------------------------------------------------------------------- /struts-2.3-any-results/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/struts-2.3-any-results/pom.xml -------------------------------------------------------------------------------- /struts-2.5-any-results/any-results/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/struts-2.5-any-results/any-results/pom.xml -------------------------------------------------------------------------------- /struts-2.5-any-results/any-results/src/main/java/org/apache/struts/helloworld/action/MainAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/struts-2.5-any-results/any-results/src/main/java/org/apache/struts/helloworld/action/MainAction.java -------------------------------------------------------------------------------- /struts-2.5-any-results/any-results/src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/struts-2.5-any-results/any-results/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /struts-2.5-any-results/any-results/src/main/resources/struts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/struts-2.5-any-results/any-results/src/main/resources/struts.xml -------------------------------------------------------------------------------- /struts-2.5-any-results/any-results/src/main/webapp/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /struts-2.5-any-results/any-results/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/struts-2.5-any-results/any-results/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /struts-2.5-any-results/any-results/src/main/webapp/confidential.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/struts-2.5-any-results/any-results/src/main/webapp/confidential.jsp -------------------------------------------------------------------------------- /struts-2.5-any-results/any-results/src/main/webapp/login.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/struts-2.5-any-results/any-results/src/main/webapp/login.jsp -------------------------------------------------------------------------------- /struts-2.5-any-results/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irsl/struts-any-results/HEAD/struts-2.5-any-results/pom.xml --------------------------------------------------------------------------------