├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .java-version ├── CONTRIBUTORS ├── Dockerfile ├── LICENSE ├── README.md ├── RELEASING.md ├── changes.md ├── docker_gradlew.sh ├── docker_integration_tests.sh ├── gradle.properties ├── gradle ├── config.groovy └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── integrationTests ├── build.gradle ├── buildSrc │ ├── build.gradle │ ├── gradle.properties │ ├── gretty-integrationTest │ │ ├── build.gradle │ │ └── src │ │ │ └── main │ │ │ ├── groovy │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── gretty │ │ │ │ └── internal │ │ │ │ └── integrationTests │ │ │ │ ├── AnyJavaVersion.java │ │ │ │ ├── BasePlugin.groovy │ │ │ │ ├── FarmIntegrationTestPlugin.groovy │ │ │ │ ├── IntegrationTestPlugin.groovy │ │ │ │ ├── JavaToolchainIntegrationTestPlugin.groovy │ │ │ │ └── ProjectProperties.groovy │ │ │ └── resources │ │ │ ├── META-INF │ │ │ └── gradle-plugins │ │ │ │ ├── org.gretty.internal.integrationTests.BasePlugin.properties │ │ │ │ ├── org.gretty.internal.integrationTests.FarmIntegrationTestPlugin.properties │ │ │ │ ├── org.gretty.internal.integrationTests.IntegrationTestPlugin.properties │ │ │ │ └── org.gretty.internal.integrationTests.JavaToolchainIntegrationTestPlugin.properties │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── gretty │ │ │ └── internal │ │ │ └── integrationTests │ │ │ └── project.properties │ └── settings.gradle ├── config │ ├── firefox-profile │ │ ├── .parentlock │ │ ├── cert8.db │ │ └── cert_override.txt │ ├── gebConfig │ │ └── GebConfig.groovy │ └── self-signed-certificate │ │ ├── cert │ │ ├── keystore │ │ └── properties ├── extraResourceBases │ ├── build.gradle │ ├── extra1 │ │ └── somedoc.html │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── ExtraResourceBasesSpec.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ ├── css │ │ └── default.css │ │ └── index.html ├── farm │ ├── MyWebApp │ │ ├── build.gradle │ │ └── src │ │ │ ├── integrationTest │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebapp │ │ │ │ └── WebAppSpec.groovy │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── MyWebAppContextListener.java │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── filter.groovy │ │ │ └── web.xml │ │ │ ├── css │ │ │ └── default.css │ │ │ ├── index.html │ │ │ └── js │ │ │ └── functions.js │ ├── MyWebService │ │ ├── build.gradle │ │ └── src │ │ │ ├── integrationTest │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebservice │ │ │ │ └── WebServiceSpec.groovy │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebservice │ │ │ │ └── ExampleServlet.java │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ └── README.md ├── farmJacoco │ ├── MyWebApp │ │ ├── build.gradle │ │ └── src │ │ │ ├── integrationTest │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebapp │ │ │ │ └── WebAppSpec.groovy │ │ │ └── main │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── filter.groovy │ │ │ └── web.xml │ │ │ ├── css │ │ │ └── default.css │ │ │ ├── index.html │ │ │ └── js │ │ │ └── functions.js │ ├── MyWebService │ │ ├── build.gradle │ │ └── src │ │ │ ├── integrationTest │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebservice │ │ │ │ └── WebServiceSpec.groovy │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebservice │ │ │ │ └── ExampleServlet.java │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ └── README.md ├── farmSecure │ ├── MyWebApp │ │ ├── build.gradle │ │ └── src │ │ │ ├── integrationTest │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebapp │ │ │ │ └── LogonSpec.groovy │ │ │ └── main │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── filter.groovy │ │ │ └── web.xml │ │ │ ├── content │ │ │ └── index.html │ │ │ ├── css │ │ │ ├── default.css │ │ │ └── login.css │ │ │ ├── images │ │ │ └── photo.jpg │ │ │ ├── js │ │ │ └── functions.js │ │ │ ├── login.html │ │ │ └── login_fail.html │ ├── MyWebService │ │ ├── build.gradle │ │ └── src │ │ │ ├── integrationTest │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebservice │ │ │ │ └── WebServiceSpec.groovy │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebservice │ │ │ │ └── ExampleServlet.java │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ ├── README.md │ └── security │ │ ├── jetty-realm.properties │ │ └── tomcat-users.xml ├── filterWebapp │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── PageSpec.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ ├── css │ │ └── default.css │ │ └── index.html ├── gradle-java-toolchain │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── gradle │ │ │ └── toolchain │ │ │ └── PageSpec.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── gradle │ │ │ └── toolchain │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ ├── css │ │ └── default.css │ │ └── index.html ├── gradle.properties ├── gretty-taglib-example │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── CheckIfWebInfLibsNotEmptySpec.groovy │ │ └── main │ │ ├── java │ │ └── HelloServlet.java │ │ └── webapp │ │ └── WEB-INF │ │ └── web.xml ├── grettyLogging_logback │ ├── .gitignore │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── PageSpec.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── logback.xml │ │ └── webapp │ │ └── WEB-INF │ │ └── web.xml ├── helloGretty │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── PageSpec.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ ├── css │ │ └── default.css │ │ └── index.html ├── helloGrettyJakartaMigration │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── PageSpec.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ ├── css │ │ └── default.css │ │ └── index.html ├── helloGrettyMultiproject │ ├── README.md │ ├── build.gradle │ ├── src │ │ ├── integrationTest │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── hellogrettyMultiproject │ │ │ │ └── PageSpec.groovy │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── hellogrettyMultiproject │ │ │ │ └── ExampleServlet.java │ │ │ ├── resources │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── hellogretty │ │ │ │ └── templates │ │ │ │ └── servletpage.html │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── filter.groovy │ │ │ └── web.xml │ │ │ ├── css │ │ │ └── default.css │ │ │ └── index.html │ └── subproject │ │ ├── build.gradle │ │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── akhikhl │ │ └── examples │ │ └── gretty │ │ └── helloGrettyMultiproject │ │ └── subproject │ │ └── SomeClass.java ├── helloGrettyOverlay │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── PageSpec.groovy │ │ └── main │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ └── index.html ├── helloGrettySecure │ ├── README.md │ ├── build.gradle │ ├── security │ │ ├── jetty-realm.properties │ │ └── tomcat-users.xml │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── LoginSpec.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ ├── content │ │ └── index.html │ │ ├── css │ │ ├── default.css │ │ └── login.css │ │ ├── images │ │ └── photo.jpg │ │ ├── login.html │ │ └── login_fail.html ├── helloJersey │ ├── README.md │ ├── build.gradle │ ├── gradle.properties │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellojersey │ │ │ └── RequestResponseSpec.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellojersey │ │ │ ├── JerseyApp.java │ │ │ └── TestResource.java │ │ └── webapp │ │ └── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml ├── jacocoExample │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── PageSpec.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ ├── css │ │ └── default.css │ │ └── index.html ├── jacocoInstantiateTasks │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── PageSpec.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ ├── css │ │ └── default.css │ │ └── index.html ├── multifarm │ ├── AllFarms │ │ └── build.gradle │ ├── MyWebApp │ │ ├── build.gradle │ │ └── src │ │ │ ├── integrationTest │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebapp │ │ │ │ └── WebAppSpec.groovy │ │ │ └── main │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── filter.groovy │ │ │ └── web.xml │ │ │ ├── css │ │ │ └── default.css │ │ │ ├── index.html │ │ │ └── js │ │ │ └── functions.js │ ├── MyWebApp2 │ │ ├── build.gradle │ │ └── src │ │ │ ├── integrationTest │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebapp │ │ │ │ └── WebAppSpec.groovy │ │ │ └── main │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── filter.groovy │ │ │ └── web.xml │ │ │ ├── css │ │ │ └── default.css │ │ │ ├── index.html │ │ │ └── js │ │ │ └── functions.js │ ├── MyWebService │ │ ├── build.gradle │ │ └── src │ │ │ ├── integrationTest │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebservice │ │ │ │ └── WebServiceSpec.groovy │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebservice │ │ │ │ └── ExampleServlet.java │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ ├── MyWebService2 │ │ ├── build.gradle │ │ └── src │ │ │ ├── integrationTest │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebservice │ │ │ │ └── WebServiceSpec.groovy │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebservice │ │ │ │ └── ExampleServlet.java │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ └── README.md ├── settings.gradle ├── spring-boot-farm-secure │ ├── jee-webservice │ │ ├── build.gradle │ │ └── src │ │ │ ├── integrationTest │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebservice │ │ │ │ └── RequestResponseIT.groovy │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebservice │ │ │ │ └── ExampleServlet.java │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ ├── security │ │ ├── jetty-realm.properties │ │ └── tomcat-users.xml │ ├── spring-boot-app │ │ ├── build.gradle │ │ └── src │ │ │ ├── integrationTest │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── springbootapp │ │ │ │ └── LogonSpec.groovy │ │ │ └── main │ │ │ ├── groovy │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── springbootapp │ │ │ │ └── Application.groovy │ │ │ ├── resources │ │ │ ├── application.properties │ │ │ └── logback.xml │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── filter.groovy │ │ │ └── web.xml │ │ │ ├── content │ │ │ └── index.html │ │ │ ├── css │ │ │ ├── default.css │ │ │ └── login.css │ │ │ ├── images │ │ │ └── photo.jpg │ │ │ ├── js │ │ │ └── functions.js │ │ │ ├── login.html │ │ │ └── login_fail.html │ └── spring-boot-webservice │ │ ├── build.gradle │ │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── springbootwebservice │ │ │ └── RequestResponseIT.groovy │ │ └── main │ │ ├── groovy │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── springbootwebservice │ │ │ ├── Application.groovy │ │ │ └── MyController.groovy │ │ └── webapp │ │ └── WEB-INF │ │ └── web.xml ├── spring-boot-farm │ ├── jee-webservice │ │ ├── build.gradle │ │ └── src │ │ │ ├── integrationTest │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebservice │ │ │ │ └── RequestResponseIT.groovy │ │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── mywebservice │ │ │ │ └── ExampleServlet.java │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ ├── spring-boot-app │ │ ├── build.gradle │ │ └── src │ │ │ ├── integrationTest │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── springbootapp │ │ │ │ └── RequestResponseIT.groovy │ │ │ └── main │ │ │ ├── groovy │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── springbootapp │ │ │ │ └── Application.groovy │ │ │ ├── resources │ │ │ ├── application.properties │ │ │ └── logback.xml │ │ │ └── webapp │ │ │ ├── WEB-INF │ │ │ ├── filter.groovy │ │ │ └── web.xml │ │ │ ├── css │ │ │ └── default.css │ │ │ ├── index.html │ │ │ └── js │ │ │ └── functions.js │ ├── spring-boot-webservice1 │ │ ├── build.gradle │ │ └── src │ │ │ ├── integrationTest │ │ │ └── groovy │ │ │ │ └── org │ │ │ │ └── akhikhl │ │ │ │ └── examples │ │ │ │ └── gretty │ │ │ │ └── springbootwebservice1 │ │ │ │ └── RequestResponseIT.groovy │ │ │ └── main │ │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── springbootwebservice1 │ │ │ ├── Application.groovy │ │ │ └── MyController.groovy │ └── spring-boot-webservice2 │ │ ├── build.gradle │ │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── springbootwebservice2 │ │ │ └── RequestResponseIT.groovy │ │ └── main │ │ └── groovy │ │ └── org │ │ └── akhikhl │ │ └── examples │ │ └── gretty │ │ └── springbootwebservice2 │ │ ├── Application.groovy │ │ └── MyController.groovy ├── spring-boot-simple │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── springbootsimple │ │ │ └── RequestResponseIT.groovy │ │ └── main │ │ ├── groovy │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── springbootsimple │ │ │ ├── Application.groovy │ │ │ └── MyController.groovy │ │ ├── resources │ │ ├── application.properties │ │ └── logback.xml │ │ └── webapp │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ ├── css │ │ └── default.css │ │ ├── index.html │ │ └── js │ │ └── functions.js ├── springBootWebSocket │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── springbootwebsocket │ │ │ └── RequestResponseIT.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── springbootwebsocket │ │ │ ├── Application.java │ │ │ ├── Greeting.java │ │ │ ├── GreetingController.java │ │ │ ├── HelloMessage.java │ │ │ └── WebSocketConfig.java │ │ └── resources │ │ ├── logback.xml │ │ └── static │ │ ├── index.html │ │ └── js │ │ └── index.js ├── testAnnotations │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── PageSpec.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ └── css │ │ └── default.css ├── testAnnotationsOverlay │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── PageSpec.groovy │ │ └── main │ │ └── resources │ │ └── org │ │ └── akhikhl │ │ └── examples │ │ └── gretty │ │ └── hellogretty │ │ └── templates │ │ └── servletpage.html ├── testDependency │ ├── build.gradle │ └── src │ │ └── integrationTest │ │ └── groovy │ │ └── org │ │ └── akhikhl │ │ └── examples │ │ └── gretty │ │ └── hellogretty │ │ └── PageSpec.groovy ├── testDuplicatingResources │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── CheckIfWebInfLibsNotEmpty.groovy │ │ └── main │ │ ├── java │ │ └── HelloServlet2.java │ │ └── webapp │ │ └── WEB-INF │ │ └── web.xml ├── testInitParameter │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── RequestResponseIT.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ ├── css │ │ └── default.css │ │ └── index.html ├── testJettyContextConfig │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── RequestResponseIT.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ ├── META-INF │ │ ├── jetty11-env.xml │ │ └── jetty12-env.xml │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ ├── css │ │ └── default.css │ │ └── index.html ├── testJettyRandomPorts │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── RequestResponseIT.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ ├── META-INF │ │ ├── jetty11-env.xml │ │ └── jetty12-env.xml │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ ├── css │ │ └── default.css │ │ └── index.html ├── testJettyServerConfig │ ├── README.md │ ├── build.gradle │ ├── jetty │ │ └── jetty.xml │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── RequestResponseIT.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ ├── css │ │ └── default.css │ │ └── index.html ├── testTomcatContextConfig │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── RequestResponseIT.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ ├── META-INF │ │ └── context.xml │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ ├── css │ │ └── default.css │ │ └── index.html ├── testTomcatRandomPorts │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── RequestResponseIT.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ ├── css │ │ └── default.css │ │ └── index.html ├── testTomcatServerConfig │ ├── README.md │ ├── build.gradle │ ├── server │ │ └── server.xml │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── RequestResponseIT.groovy │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── ExampleServlet.java │ │ ├── resources │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── hellogretty │ │ │ └── templates │ │ │ └── servletpage.html │ │ └── webapp │ │ ├── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml │ │ ├── css │ │ └── default.css │ │ └── index.html ├── testWar │ ├── build.gradle │ └── src │ │ └── integrationTest │ │ └── groovy │ │ └── org │ │ └── akhikhl │ │ └── examples │ │ └── gretty │ │ └── hellogretty │ │ └── RequestResponseIT.groovy ├── webfragment │ ├── build.gradle │ └── src │ │ └── main │ │ ├── java │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── webfragment │ │ │ └── ExampleServlet.java │ │ └── resources │ │ ├── META-INF │ │ ├── resources │ │ │ ├── images │ │ │ │ └── webfragment.png │ │ │ └── index.html │ │ └── web-fragment.xml │ │ └── org │ │ └── akhikhl │ │ └── examples │ │ └── gretty │ │ └── webfragment │ │ └── templates │ │ └── servletpage.html ├── webhost │ ├── README.md │ ├── build.gradle │ └── src │ │ ├── integrationTest │ │ └── groovy │ │ │ └── org │ │ │ └── akhikhl │ │ │ └── examples │ │ │ └── gretty │ │ │ └── webhost │ │ │ └── RequestResponseIT.groovy │ │ └── main │ │ └── webapp │ │ └── WEB-INF │ │ ├── filter.groovy │ │ └── web.xml └── websocket │ ├── build.gradle │ └── src │ ├── integrationTest │ └── groovy │ │ └── org │ │ └── akhikhl │ │ └── examples │ │ └── gretty │ │ └── websocket │ │ └── RequestResponseIT.groovy │ └── main │ ├── java │ └── org │ │ └── akhikhl │ │ └── examples │ │ └── gretty │ │ └── websocket │ │ └── EventSocket.java │ ├── resources │ └── logback.xml │ └── webapp │ ├── index.html │ └── js │ └── index.js ├── jitpack.yml ├── libs ├── gretty-common │ ├── build.gradle │ └── src │ │ └── main │ │ └── groovy │ │ └── org │ │ └── akhikhl │ │ └── gretty │ │ └── ServiceProtocol.groovy ├── gretty-core │ ├── build.gradle │ └── src │ │ └── main │ │ ├── groovy │ │ └── org │ │ │ └── akhikhl │ │ │ └── gretty │ │ │ ├── ConfigUtils.groovy │ │ │ ├── Externalized.groovy │ │ │ ├── FarmConfig.groovy │ │ │ ├── FarmsConfig.groovy │ │ │ ├── GrettyConfig.groovy │ │ │ ├── JavaExecParams.groovy │ │ │ ├── Launcher.groovy │ │ │ ├── LauncherBase.groovy │ │ │ ├── LauncherConfig.groovy │ │ │ ├── ServerConfig.groovy │ │ │ ├── StartConfig.groovy │ │ │ ├── WebAppClassPathResolver.groovy │ │ │ └── WebAppConfig.groovy │ │ └── resources │ │ └── org │ │ └── akhikhl │ │ └── gretty │ │ └── Externalized.properties ├── gretty-filter │ ├── build.gradle │ └── src │ │ └── main │ │ └── groovy │ │ └── org │ │ └── akhikhl │ │ └── gretty │ │ └── RedirectFilter.groovy ├── gretty-runner-api │ ├── build.gradle │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── akhikhl │ │ └── gretty │ │ ├── ServerDefaults.java │ │ ├── ServerManager.java │ │ └── ServerStartEvent.java ├── gretty-runner-jetty │ ├── build.gradle │ └── src │ │ └── main │ │ └── groovy │ │ └── org │ │ └── akhikhl │ │ └── gretty │ │ ├── BaseResourceConfiguration.groovy │ │ ├── JettyConfigurer.groovy │ │ ├── JettyConfigurerBase.groovy │ │ ├── JettyServerConfigurer.groovy │ │ ├── JettyServerManager.groovy │ │ ├── JettyServerStartInfo.groovy │ │ └── ServerManagerFactory.groovy ├── gretty-runner-jetty11 │ ├── build.gradle │ └── src │ │ └── main │ │ └── groovy │ │ └── org │ │ └── akhikhl │ │ └── gretty │ │ ├── JettyConfigurerImpl.groovy │ │ ├── JettyWebAppContext.groovy │ │ ├── SSOAuthenticatorFactory.java │ │ ├── SSOBasicAuthenticator.java │ │ ├── SSOClientCertAuthenticator.java │ │ ├── SSODigestAuthenticator.java │ │ ├── SSOHelper.java │ │ ├── SSOSpnegoAuthenticator.java │ │ ├── SingleSignOnSessionHandler.groovy │ │ └── WebInfConfigurationEx.groovy ├── gretty-runner-jetty12 │ ├── build.gradle │ └── src │ │ └── main │ │ └── groovy │ │ └── org │ │ └── akhikhl │ │ └── gretty │ │ ├── JettyConfigurerImpl.groovy │ │ ├── JettyWebAppContext.groovy │ │ ├── SSOAuthenticatorFactory.java │ │ ├── SSOBasicAuthenticator.java │ │ ├── SSOClientCertAuthenticator.java │ │ ├── SSODigestAuthenticator.java │ │ ├── SSOHelper.java │ │ ├── SSOSpnegoAuthenticator.java │ │ ├── SingleSignOnSessionHandler.groovy │ │ └── WebInfConfigurationEx.groovy ├── gretty-runner-tomcat │ ├── build.gradle │ └── src │ │ └── main │ │ └── groovy │ │ └── org │ │ └── akhikhl │ │ └── gretty │ │ ├── AbstractTomcatConfigurerImpl.groovy │ │ ├── JarSkipPatterns.groovy │ │ ├── ServerManagerFactory.groovy │ │ ├── SkipPatternJarScanner.groovy │ │ ├── SpringloadedCleanup.groovy │ │ ├── TomcatConfigurer.groovy │ │ ├── TomcatServerConfigurer.groovy │ │ ├── TomcatServerManager.groovy │ │ └── TomcatServerStartInfo.groovy ├── gretty-runner-tomcat10 │ ├── build.gradle │ └── src │ │ └── main │ │ └── groovy │ │ └── org │ │ └── akhikhl │ │ └── gretty │ │ └── TomcatConfigurerImpl.groovy ├── gretty-runner-tomcat11 │ ├── build.gradle │ └── src │ │ └── main │ │ └── groovy │ │ └── org │ │ └── akhikhl │ │ └── gretty │ │ └── TomcatConfigurerImpl.groovy ├── gretty-runner │ ├── build.gradle │ └── src │ │ └── main │ │ └── groovy │ │ └── org │ │ └── akhikhl │ │ └── gretty │ │ └── Runner.groovy ├── gretty-spock │ ├── build.gradle │ └── src │ │ └── main │ │ └── groovy │ │ └── org │ │ └── akhikhl │ │ └── gretty │ │ └── GrettyAjaxSpec.groovy ├── gretty-springboot │ ├── build.gradle │ └── src │ │ └── main │ │ └── groovy │ │ └── org │ │ └── akhikhl │ │ └── gretty │ │ └── AppServletInitializer.java ├── gretty-starter │ ├── build.gradle │ └── src │ │ └── main │ │ └── groovy │ │ └── org │ │ └── akhikhl │ │ └── gretty │ │ ├── GrettyStarter.groovy │ │ ├── PlatformUtils.groovy │ │ └── StarterLauncher.groovy └── gretty │ ├── build.gradle │ └── src │ └── main │ └── groovy │ └── org │ └── akhikhl │ └── gretty │ ├── AppAfterIntegrationTestTask.groovy │ ├── AppBeforeIntegrationTestTask.groovy │ ├── AppRedeployTask.groovy │ ├── AppRestartTask.groovy │ ├── AppServiceTask.groovy │ ├── AppStartTask.groovy │ ├── AppStopTask.groovy │ ├── CertificateGenerator.groovy │ ├── DefaultLauncher.groovy │ ├── FarmAfterIntegrationTestTask.groovy │ ├── FarmBeforeIntegrationTestTask.groovy │ ├── FarmConfigurer.groovy │ ├── FarmConfigurerUtil.groovy │ ├── FarmExtension.groovy │ ├── FarmIntegrationTestTask.groovy │ ├── FarmRestartTask.groovy │ ├── FarmServiceTask.groovy │ ├── FarmStartTask.groovy │ ├── FarmStopTask.groovy │ ├── FarmWebappType.groovy │ ├── FarmsExtension.groovy │ ├── FileReloadSpec.groovy │ ├── FileResolver.groovy │ ├── GradleUtils.groovy │ ├── GrettyExtension.groovy │ ├── GrettyPlugin.groovy │ ├── JacocoHelper.groovy │ ├── JettyScannerManager.groovy │ ├── JettyStartTask.groovy │ ├── ManagedDirectory.groovy │ ├── ProductConfigurer.groovy │ ├── ProductExtension.groovy │ ├── ProductsConfigurer.groovy │ ├── ProductsExtension.groovy │ ├── ProjectReloadUtils.groovy │ ├── ProjectUtils.groovy │ ├── ScannerManager.groovy │ ├── ServletContainerConfig.groovy │ ├── SpringBootMainClassFinder.groovy │ ├── StartBaseTask.groovy │ ├── TaskWithServerConfig.groovy │ ├── TaskWithWebAppConfig.groovy │ ├── TomcatStartTask.groovy │ └── scanner │ ├── BaseScannerManager.groovy │ └── JDKScannerManager.groovy ├── pluginScripts ├── gretty-1.1.0.plugin ├── gretty-1.1.1.plugin ├── gretty-1.1.2.plugin ├── gretty-1.1.3.plugin ├── gretty-1.1.4.plugin ├── gretty-1.1.5.plugin ├── gretty-1.1.6.plugin ├── gretty-1.1.7.plugin ├── gretty-1.1.8.plugin ├── gretty-1.1.9.plugin ├── gretty-1.2.0.plugin ├── gretty-1.2.1.plugin ├── gretty-1.2.2.plugin ├── gretty-1.2.3.plugin ├── gretty-1.2.4.plugin ├── gretty-1.2.5.plugin ├── gretty-1.3.0.plugin ├── gretty-1.4.0.plugin ├── gretty-1.4.1.plugin ├── gretty-1.4.2.plugin ├── gretty-2.0.0.plugin ├── gretty-2.1.0.plugin ├── gretty-2.2.0.plugin ├── gretty-2.3.0.plugin ├── gretty-3.0.1.plugin ├── gretty-3.0.2.plugin ├── gretty-3.0.3.plugin ├── gretty-3.0.5.plugin ├── gretty-3.0.6.plugin ├── gretty-4.0.0.plugin ├── gretty-4.0.1.plugin ├── gretty-4.0.2.plugin ├── gretty-4.0.3.plugin ├── gretty-4.1.0.plugin ├── gretty-4.1.1.plugin ├── gretty-4.1.10.plugin ├── gretty-4.1.2.plugin ├── gretty-4.1.3.plugin ├── gretty-4.1.4.plugin ├── gretty-4.1.5.plugin ├── gretty-4.1.6.plugin ├── gretty-4.1.7.plugin ├── gretty-4.1.8.plugin ├── gretty-5.0.0.plugin ├── gretty-5.0.1.plugin ├── gretty-SNAPSHOT.plugin └── gretty.plugin └── settings.gradle /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/.gitignore -------------------------------------------------------------------------------- /.java-version: -------------------------------------------------------------------------------- 1 | 17.0 2 | -------------------------------------------------------------------------------- /CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/CONTRIBUTORS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/RELEASING.md -------------------------------------------------------------------------------- /changes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/changes.md -------------------------------------------------------------------------------- /docker_gradlew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/docker_gradlew.sh -------------------------------------------------------------------------------- /docker_integration_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/docker_integration_tests.sh -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/config.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/gradle/config.groovy -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/gradlew.bat -------------------------------------------------------------------------------- /integrationTests/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/build.gradle -------------------------------------------------------------------------------- /integrationTests/buildSrc/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/buildSrc/build.gradle -------------------------------------------------------------------------------- /integrationTests/buildSrc/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/buildSrc/gradle.properties -------------------------------------------------------------------------------- /integrationTests/buildSrc/gretty-integrationTest/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/buildSrc/gretty-integrationTest/build.gradle -------------------------------------------------------------------------------- /integrationTests/buildSrc/gretty-integrationTest/src/main/groovy/org/akhikhl/gretty/internal/integrationTests/AnyJavaVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/buildSrc/gretty-integrationTest/src/main/groovy/org/akhikhl/gretty/internal/integrationTests/AnyJavaVersion.java -------------------------------------------------------------------------------- /integrationTests/buildSrc/gretty-integrationTest/src/main/groovy/org/akhikhl/gretty/internal/integrationTests/BasePlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/buildSrc/gretty-integrationTest/src/main/groovy/org/akhikhl/gretty/internal/integrationTests/BasePlugin.groovy -------------------------------------------------------------------------------- /integrationTests/buildSrc/gretty-integrationTest/src/main/groovy/org/akhikhl/gretty/internal/integrationTests/FarmIntegrationTestPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/buildSrc/gretty-integrationTest/src/main/groovy/org/akhikhl/gretty/internal/integrationTests/FarmIntegrationTestPlugin.groovy -------------------------------------------------------------------------------- /integrationTests/buildSrc/gretty-integrationTest/src/main/groovy/org/akhikhl/gretty/internal/integrationTests/IntegrationTestPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/buildSrc/gretty-integrationTest/src/main/groovy/org/akhikhl/gretty/internal/integrationTests/IntegrationTestPlugin.groovy -------------------------------------------------------------------------------- /integrationTests/buildSrc/gretty-integrationTest/src/main/groovy/org/akhikhl/gretty/internal/integrationTests/JavaToolchainIntegrationTestPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/buildSrc/gretty-integrationTest/src/main/groovy/org/akhikhl/gretty/internal/integrationTests/JavaToolchainIntegrationTestPlugin.groovy -------------------------------------------------------------------------------- /integrationTests/buildSrc/gretty-integrationTest/src/main/groovy/org/akhikhl/gretty/internal/integrationTests/ProjectProperties.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/buildSrc/gretty-integrationTest/src/main/groovy/org/akhikhl/gretty/internal/integrationTests/ProjectProperties.groovy -------------------------------------------------------------------------------- /integrationTests/buildSrc/gretty-integrationTest/src/main/resources/META-INF/gradle-plugins/org.gretty.internal.integrationTests.BasePlugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/buildSrc/gretty-integrationTest/src/main/resources/META-INF/gradle-plugins/org.gretty.internal.integrationTests.BasePlugin.properties -------------------------------------------------------------------------------- /integrationTests/buildSrc/gretty-integrationTest/src/main/resources/META-INF/gradle-plugins/org.gretty.internal.integrationTests.FarmIntegrationTestPlugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/buildSrc/gretty-integrationTest/src/main/resources/META-INF/gradle-plugins/org.gretty.internal.integrationTests.FarmIntegrationTestPlugin.properties -------------------------------------------------------------------------------- /integrationTests/buildSrc/gretty-integrationTest/src/main/resources/META-INF/gradle-plugins/org.gretty.internal.integrationTests.IntegrationTestPlugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/buildSrc/gretty-integrationTest/src/main/resources/META-INF/gradle-plugins/org.gretty.internal.integrationTests.IntegrationTestPlugin.properties -------------------------------------------------------------------------------- /integrationTests/buildSrc/gretty-integrationTest/src/main/resources/META-INF/gradle-plugins/org.gretty.internal.integrationTests.JavaToolchainIntegrationTestPlugin.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/buildSrc/gretty-integrationTest/src/main/resources/META-INF/gradle-plugins/org.gretty.internal.integrationTests.JavaToolchainIntegrationTestPlugin.properties -------------------------------------------------------------------------------- /integrationTests/buildSrc/gretty-integrationTest/src/main/resources/org/akhikhl/gretty/internal/integrationTests/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/buildSrc/gretty-integrationTest/src/main/resources/org/akhikhl/gretty/internal/integrationTests/project.properties -------------------------------------------------------------------------------- /integrationTests/buildSrc/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/buildSrc/settings.gradle -------------------------------------------------------------------------------- /integrationTests/config/firefox-profile/.parentlock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /integrationTests/config/firefox-profile/cert8.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/config/firefox-profile/cert8.db -------------------------------------------------------------------------------- /integrationTests/config/firefox-profile/cert_override.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/config/firefox-profile/cert_override.txt -------------------------------------------------------------------------------- /integrationTests/config/gebConfig/GebConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/config/gebConfig/GebConfig.groovy -------------------------------------------------------------------------------- /integrationTests/config/self-signed-certificate/cert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/config/self-signed-certificate/cert -------------------------------------------------------------------------------- /integrationTests/config/self-signed-certificate/keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/config/self-signed-certificate/keystore -------------------------------------------------------------------------------- /integrationTests/config/self-signed-certificate/properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/config/self-signed-certificate/properties -------------------------------------------------------------------------------- /integrationTests/extraResourceBases/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/extraResourceBases/build.gradle -------------------------------------------------------------------------------- /integrationTests/extraResourceBases/extra1/somedoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/extraResourceBases/extra1/somedoc.html -------------------------------------------------------------------------------- /integrationTests/extraResourceBases/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/ExtraResourceBasesSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/extraResourceBases/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/ExtraResourceBasesSpec.groovy -------------------------------------------------------------------------------- /integrationTests/extraResourceBases/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/extraResourceBases/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/extraResourceBases/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/extraResourceBases/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/extraResourceBases/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/extraResourceBases/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/extraResourceBases/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/extraResourceBases/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/extraResourceBases/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/extraResourceBases/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/extraResourceBases/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/farm/MyWebApp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farm/MyWebApp/build.gradle -------------------------------------------------------------------------------- /integrationTests/farm/MyWebApp/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebapp/WebAppSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farm/MyWebApp/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebapp/WebAppSpec.groovy -------------------------------------------------------------------------------- /integrationTests/farm/MyWebApp/src/main/java/org/akhikhl/examples/gretty/MyWebAppContextListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farm/MyWebApp/src/main/java/org/akhikhl/examples/gretty/MyWebAppContextListener.java -------------------------------------------------------------------------------- /integrationTests/farm/MyWebApp/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/farm/MyWebApp/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farm/MyWebApp/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/farm/MyWebApp/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farm/MyWebApp/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/farm/MyWebApp/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farm/MyWebApp/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/farm/MyWebApp/src/main/webapp/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farm/MyWebApp/src/main/webapp/js/functions.js -------------------------------------------------------------------------------- /integrationTests/farm/MyWebService/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farm/MyWebService/build.gradle -------------------------------------------------------------------------------- /integrationTests/farm/MyWebService/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebservice/WebServiceSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farm/MyWebService/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebservice/WebServiceSpec.groovy -------------------------------------------------------------------------------- /integrationTests/farm/MyWebService/src/main/java/org/akhikhl/examples/gretty/mywebservice/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farm/MyWebService/src/main/java/org/akhikhl/examples/gretty/mywebservice/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/farm/MyWebService/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farm/MyWebService/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/farm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farm/README.md -------------------------------------------------------------------------------- /integrationTests/farmJacoco/MyWebApp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmJacoco/MyWebApp/build.gradle -------------------------------------------------------------------------------- /integrationTests/farmJacoco/MyWebApp/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebapp/WebAppSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmJacoco/MyWebApp/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebapp/WebAppSpec.groovy -------------------------------------------------------------------------------- /integrationTests/farmJacoco/MyWebApp/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/farmJacoco/MyWebApp/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmJacoco/MyWebApp/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/farmJacoco/MyWebApp/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmJacoco/MyWebApp/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/farmJacoco/MyWebApp/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmJacoco/MyWebApp/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/farmJacoco/MyWebApp/src/main/webapp/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmJacoco/MyWebApp/src/main/webapp/js/functions.js -------------------------------------------------------------------------------- /integrationTests/farmJacoco/MyWebService/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmJacoco/MyWebService/build.gradle -------------------------------------------------------------------------------- /integrationTests/farmJacoco/MyWebService/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebservice/WebServiceSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmJacoco/MyWebService/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebservice/WebServiceSpec.groovy -------------------------------------------------------------------------------- /integrationTests/farmJacoco/MyWebService/src/main/java/org/akhikhl/examples/gretty/mywebservice/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmJacoco/MyWebService/src/main/java/org/akhikhl/examples/gretty/mywebservice/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/farmJacoco/MyWebService/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmJacoco/MyWebService/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/farmJacoco/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmJacoco/README.md -------------------------------------------------------------------------------- /integrationTests/farmSecure/MyWebApp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/MyWebApp/build.gradle -------------------------------------------------------------------------------- /integrationTests/farmSecure/MyWebApp/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebapp/LogonSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/MyWebApp/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebapp/LogonSpec.groovy -------------------------------------------------------------------------------- /integrationTests/farmSecure/MyWebApp/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'content/index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/farmSecure/MyWebApp/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/MyWebApp/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/farmSecure/MyWebApp/src/main/webapp/content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/MyWebApp/src/main/webapp/content/index.html -------------------------------------------------------------------------------- /integrationTests/farmSecure/MyWebApp/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/MyWebApp/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/farmSecure/MyWebApp/src/main/webapp/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/MyWebApp/src/main/webapp/css/login.css -------------------------------------------------------------------------------- /integrationTests/farmSecure/MyWebApp/src/main/webapp/images/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/MyWebApp/src/main/webapp/images/photo.jpg -------------------------------------------------------------------------------- /integrationTests/farmSecure/MyWebApp/src/main/webapp/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/MyWebApp/src/main/webapp/js/functions.js -------------------------------------------------------------------------------- /integrationTests/farmSecure/MyWebApp/src/main/webapp/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/MyWebApp/src/main/webapp/login.html -------------------------------------------------------------------------------- /integrationTests/farmSecure/MyWebApp/src/main/webapp/login_fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/MyWebApp/src/main/webapp/login_fail.html -------------------------------------------------------------------------------- /integrationTests/farmSecure/MyWebService/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/MyWebService/build.gradle -------------------------------------------------------------------------------- /integrationTests/farmSecure/MyWebService/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebservice/WebServiceSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/MyWebService/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebservice/WebServiceSpec.groovy -------------------------------------------------------------------------------- /integrationTests/farmSecure/MyWebService/src/main/java/org/akhikhl/examples/gretty/mywebservice/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/MyWebService/src/main/java/org/akhikhl/examples/gretty/mywebservice/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/farmSecure/MyWebService/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/MyWebService/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/farmSecure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/README.md -------------------------------------------------------------------------------- /integrationTests/farmSecure/security/jetty-realm.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/security/jetty-realm.properties -------------------------------------------------------------------------------- /integrationTests/farmSecure/security/tomcat-users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/farmSecure/security/tomcat-users.xml -------------------------------------------------------------------------------- /integrationTests/filterWebapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/filterWebapp/README.md -------------------------------------------------------------------------------- /integrationTests/filterWebapp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/filterWebapp/build.gradle -------------------------------------------------------------------------------- /integrationTests/filterWebapp/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/filterWebapp/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy -------------------------------------------------------------------------------- /integrationTests/filterWebapp/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/filterWebapp/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/filterWebapp/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/filterWebapp/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/filterWebapp/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/filterWebapp/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/filterWebapp/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/filterWebapp/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/filterWebapp/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/filterWebapp/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/filterWebapp/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/gradle-java-toolchain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/gradle-java-toolchain/README.md -------------------------------------------------------------------------------- /integrationTests/gradle-java-toolchain/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/gradle-java-toolchain/build.gradle -------------------------------------------------------------------------------- /integrationTests/gradle-java-toolchain/src/integrationTest/groovy/org/akhikhl/examples/gretty/gradle/toolchain/PageSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/gradle-java-toolchain/src/integrationTest/groovy/org/akhikhl/examples/gretty/gradle/toolchain/PageSpec.groovy -------------------------------------------------------------------------------- /integrationTests/gradle-java-toolchain/src/main/java/org/akhikhl/examples/gretty/gradle/toolchain/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/gradle-java-toolchain/src/main/java/org/akhikhl/examples/gretty/gradle/toolchain/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/gradle-java-toolchain/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/gradle-java-toolchain/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/gradle-java-toolchain/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/gradle-java-toolchain/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/gradle-java-toolchain/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/gradle-java-toolchain/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/gradle-java-toolchain/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/gradle-java-toolchain/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/gradle-java-toolchain/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/gradle.properties -------------------------------------------------------------------------------- /integrationTests/gretty-taglib-example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/gretty-taglib-example/README.md -------------------------------------------------------------------------------- /integrationTests/gretty-taglib-example/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/gretty-taglib-example/build.gradle -------------------------------------------------------------------------------- /integrationTests/gretty-taglib-example/src/integrationTest/groovy/org/akhikhl/examples/gretty/CheckIfWebInfLibsNotEmptySpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/gretty-taglib-example/src/integrationTest/groovy/org/akhikhl/examples/gretty/CheckIfWebInfLibsNotEmptySpec.groovy -------------------------------------------------------------------------------- /integrationTests/gretty-taglib-example/src/main/java/HelloServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/gretty-taglib-example/src/main/java/HelloServlet.java -------------------------------------------------------------------------------- /integrationTests/gretty-taglib-example/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/gretty-taglib-example/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/grettyLogging_logback/.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | -------------------------------------------------------------------------------- /integrationTests/grettyLogging_logback/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/grettyLogging_logback/README.md -------------------------------------------------------------------------------- /integrationTests/grettyLogging_logback/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/grettyLogging_logback/build.gradle -------------------------------------------------------------------------------- /integrationTests/grettyLogging_logback/src/integrationTest/groovy/org/akhikhl/examples/gretty/PageSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/grettyLogging_logback/src/integrationTest/groovy/org/akhikhl/examples/gretty/PageSpec.groovy -------------------------------------------------------------------------------- /integrationTests/grettyLogging_logback/src/main/java/org/akhikhl/examples/gretty/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/grettyLogging_logback/src/main/java/org/akhikhl/examples/gretty/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/grettyLogging_logback/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/grettyLogging_logback/src/main/resources/logback.xml -------------------------------------------------------------------------------- /integrationTests/grettyLogging_logback/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/grettyLogging_logback/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/helloGretty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGretty/README.md -------------------------------------------------------------------------------- /integrationTests/helloGretty/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGretty/build.gradle -------------------------------------------------------------------------------- /integrationTests/helloGretty/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGretty/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy -------------------------------------------------------------------------------- /integrationTests/helloGretty/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGretty/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/helloGretty/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGretty/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/helloGretty/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/helloGretty/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGretty/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/helloGretty/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGretty/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/helloGretty/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGretty/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/helloGrettyJakartaMigration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyJakartaMigration/README.md -------------------------------------------------------------------------------- /integrationTests/helloGrettyJakartaMigration/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyJakartaMigration/build.gradle -------------------------------------------------------------------------------- /integrationTests/helloGrettyJakartaMigration/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyJakartaMigration/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy -------------------------------------------------------------------------------- /integrationTests/helloGrettyJakartaMigration/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyJakartaMigration/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/helloGrettyJakartaMigration/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyJakartaMigration/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/helloGrettyJakartaMigration/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyJakartaMigration/src/main/webapp/META-INF/context.xml -------------------------------------------------------------------------------- /integrationTests/helloGrettyJakartaMigration/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/helloGrettyJakartaMigration/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyJakartaMigration/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/helloGrettyJakartaMigration/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyJakartaMigration/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/helloGrettyJakartaMigration/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyJakartaMigration/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/helloGrettyMultiproject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyMultiproject/README.md -------------------------------------------------------------------------------- /integrationTests/helloGrettyMultiproject/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyMultiproject/build.gradle -------------------------------------------------------------------------------- /integrationTests/helloGrettyMultiproject/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogrettyMultiproject/PageSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyMultiproject/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogrettyMultiproject/PageSpec.groovy -------------------------------------------------------------------------------- /integrationTests/helloGrettyMultiproject/src/main/java/org/akhikhl/examples/gretty/hellogrettyMultiproject/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyMultiproject/src/main/java/org/akhikhl/examples/gretty/hellogrettyMultiproject/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/helloGrettyMultiproject/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyMultiproject/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/helloGrettyMultiproject/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/helloGrettyMultiproject/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyMultiproject/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/helloGrettyMultiproject/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyMultiproject/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/helloGrettyMultiproject/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyMultiproject/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/helloGrettyMultiproject/subproject/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'java' 2 | -------------------------------------------------------------------------------- /integrationTests/helloGrettyMultiproject/subproject/src/main/java/org/akhikhl/examples/gretty/helloGrettyMultiproject/subproject/SomeClass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyMultiproject/subproject/src/main/java/org/akhikhl/examples/gretty/helloGrettyMultiproject/subproject/SomeClass.java -------------------------------------------------------------------------------- /integrationTests/helloGrettyOverlay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyOverlay/README.md -------------------------------------------------------------------------------- /integrationTests/helloGrettyOverlay/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyOverlay/build.gradle -------------------------------------------------------------------------------- /integrationTests/helloGrettyOverlay/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyOverlay/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy -------------------------------------------------------------------------------- /integrationTests/helloGrettyOverlay/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyOverlay/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/helloGrettyOverlay/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettyOverlay/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/helloGrettySecure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettySecure/README.md -------------------------------------------------------------------------------- /integrationTests/helloGrettySecure/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettySecure/build.gradle -------------------------------------------------------------------------------- /integrationTests/helloGrettySecure/security/jetty-realm.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettySecure/security/jetty-realm.properties -------------------------------------------------------------------------------- /integrationTests/helloGrettySecure/security/tomcat-users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettySecure/security/tomcat-users.xml -------------------------------------------------------------------------------- /integrationTests/helloGrettySecure/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/LoginSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettySecure/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/LoginSpec.groovy -------------------------------------------------------------------------------- /integrationTests/helloGrettySecure/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettySecure/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/helloGrettySecure/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettySecure/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/helloGrettySecure/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'content/index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/helloGrettySecure/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettySecure/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/helloGrettySecure/src/main/webapp/content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettySecure/src/main/webapp/content/index.html -------------------------------------------------------------------------------- /integrationTests/helloGrettySecure/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettySecure/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/helloGrettySecure/src/main/webapp/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettySecure/src/main/webapp/css/login.css -------------------------------------------------------------------------------- /integrationTests/helloGrettySecure/src/main/webapp/images/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettySecure/src/main/webapp/images/photo.jpg -------------------------------------------------------------------------------- /integrationTests/helloGrettySecure/src/main/webapp/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettySecure/src/main/webapp/login.html -------------------------------------------------------------------------------- /integrationTests/helloGrettySecure/src/main/webapp/login_fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloGrettySecure/src/main/webapp/login_fail.html -------------------------------------------------------------------------------- /integrationTests/helloJersey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloJersey/README.md -------------------------------------------------------------------------------- /integrationTests/helloJersey/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloJersey/build.gradle -------------------------------------------------------------------------------- /integrationTests/helloJersey/gradle.properties: -------------------------------------------------------------------------------- 1 | jersey_version=3.1.0-M8 2 | -------------------------------------------------------------------------------- /integrationTests/helloJersey/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellojersey/RequestResponseSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloJersey/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellojersey/RequestResponseSpec.groovy -------------------------------------------------------------------------------- /integrationTests/helloJersey/src/main/java/org/akhikhl/examples/gretty/hellojersey/JerseyApp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloJersey/src/main/java/org/akhikhl/examples/gretty/hellojersey/JerseyApp.java -------------------------------------------------------------------------------- /integrationTests/helloJersey/src/main/java/org/akhikhl/examples/gretty/hellojersey/TestResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloJersey/src/main/java/org/akhikhl/examples/gretty/hellojersey/TestResource.java -------------------------------------------------------------------------------- /integrationTests/helloJersey/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'testresource' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/helloJersey/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/helloJersey/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/jacocoExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/jacocoExample/README.md -------------------------------------------------------------------------------- /integrationTests/jacocoExample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/jacocoExample/build.gradle -------------------------------------------------------------------------------- /integrationTests/jacocoExample/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/jacocoExample/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy -------------------------------------------------------------------------------- /integrationTests/jacocoExample/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/jacocoExample/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/jacocoExample/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/jacocoExample/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/jacocoExample/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/jacocoExample/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/jacocoExample/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/jacocoExample/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/jacocoExample/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/jacocoExample/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/jacocoExample/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/jacocoInstantiateTasks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/jacocoInstantiateTasks/README.md -------------------------------------------------------------------------------- /integrationTests/jacocoInstantiateTasks/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/jacocoInstantiateTasks/build.gradle -------------------------------------------------------------------------------- /integrationTests/jacocoInstantiateTasks/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/jacocoInstantiateTasks/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy -------------------------------------------------------------------------------- /integrationTests/jacocoInstantiateTasks/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/jacocoInstantiateTasks/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/jacocoInstantiateTasks/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/jacocoInstantiateTasks/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/jacocoInstantiateTasks/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/jacocoInstantiateTasks/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/jacocoInstantiateTasks/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/jacocoInstantiateTasks/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/jacocoInstantiateTasks/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/jacocoInstantiateTasks/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/jacocoInstantiateTasks/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/multifarm/AllFarms/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/AllFarms/build.gradle -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebApp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebApp/build.gradle -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebApp/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebapp/WebAppSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebApp/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebapp/WebAppSpec.groovy -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebApp/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebApp/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebApp/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebApp/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebApp/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebApp/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebApp/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebApp/src/main/webapp/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebApp/src/main/webapp/js/functions.js -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebApp2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebApp2/build.gradle -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebApp2/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebapp/WebAppSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebApp2/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebapp/WebAppSpec.groovy -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebApp2/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebApp2/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebApp2/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebApp2/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebApp2/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebApp2/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebApp2/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebApp2/src/main/webapp/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebApp2/src/main/webapp/js/functions.js -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebService/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebService/build.gradle -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebService/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebservice/WebServiceSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebService/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebservice/WebServiceSpec.groovy -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebService/src/main/java/org/akhikhl/examples/gretty/mywebservice/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebService/src/main/java/org/akhikhl/examples/gretty/mywebservice/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebService/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebService/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebService2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebService2/build.gradle -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebService2/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebservice/WebServiceSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebService2/src/integrationTest/groovy/org/akhikhl/examples/gretty/mywebservice/WebServiceSpec.groovy -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebService2/src/main/java/org/akhikhl/examples/gretty/mywebservice/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebService2/src/main/java/org/akhikhl/examples/gretty/mywebservice/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/multifarm/MyWebService2/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/MyWebService2/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/multifarm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/multifarm/README.md -------------------------------------------------------------------------------- /integrationTests/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/settings.gradle -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/jee-webservice/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/jee-webservice/build.gradle -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/jee-webservice/src/integrationTest/groovy/org/akhikhl/examples/gretty/org/akhikhl/examples/gretty/mywebservice/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/jee-webservice/src/integrationTest/groovy/org/akhikhl/examples/gretty/org/akhikhl/examples/gretty/mywebservice/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/jee-webservice/src/main/java/org/akhikhl/examples/gretty/mywebservice/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/jee-webservice/src/main/java/org/akhikhl/examples/gretty/mywebservice/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/jee-webservice/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/jee-webservice/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/security/jetty-realm.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/security/jetty-realm.properties -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/security/tomcat-users.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/security/tomcat-users.xml -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-app/build.gradle -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-app/src/integrationTest/groovy/org/akhikhl/examples/gretty/springbootapp/LogonSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-app/src/integrationTest/groovy/org/akhikhl/examples/gretty/springbootapp/LogonSpec.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/groovy/org/akhikhl/examples/gretty/springbootapp/Application.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/groovy/org/akhikhl/examples/gretty/springbootapp/Application.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | http.mappers.json-pretty-print=true 2 | -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/resources/logback.xml -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'content/index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/content/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/content/index.html -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/css/login.css -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/images/photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/images/photo.jpg -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/js/functions.js -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/login.html -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/login_fail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-app/src/main/webapp/login_fail.html -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-webservice/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-webservice/build.gradle -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-webservice/src/integrationTest/groovy/org/akhikhl/examples/gretty/springbootwebservice/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-webservice/src/integrationTest/groovy/org/akhikhl/examples/gretty/springbootwebservice/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-webservice/src/main/groovy/org/akhikhl/examples/gretty/springbootwebservice/Application.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-webservice/src/main/groovy/org/akhikhl/examples/gretty/springbootwebservice/Application.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-webservice/src/main/groovy/org/akhikhl/examples/gretty/springbootwebservice/MyController.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-webservice/src/main/groovy/org/akhikhl/examples/gretty/springbootwebservice/MyController.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm-secure/spring-boot-webservice/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm-secure/spring-boot-webservice/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/jee-webservice/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/jee-webservice/build.gradle -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/jee-webservice/src/integrationTest/groovy/org/akhikhl/examples/gretty/org/akhikhl/examples/gretty/mywebservice/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/jee-webservice/src/integrationTest/groovy/org/akhikhl/examples/gretty/org/akhikhl/examples/gretty/mywebservice/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/jee-webservice/src/main/java/org/akhikhl/examples/gretty/mywebservice/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/jee-webservice/src/main/java/org/akhikhl/examples/gretty/mywebservice/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/jee-webservice/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/jee-webservice/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/spring-boot-app/build.gradle -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-app/src/integrationTest/groovy/org/akhikhl/examples/gretty/springbootapp/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/spring-boot-app/src/integrationTest/groovy/org/akhikhl/examples/gretty/springbootapp/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-app/src/main/groovy/org/akhikhl/examples/gretty/springbootapp/Application.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/spring-boot-app/src/main/groovy/org/akhikhl/examples/gretty/springbootapp/Application.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-app/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | http.mappers.json-pretty-print=true 2 | -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-app/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/spring-boot-app/src/main/resources/logback.xml -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-app/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-app/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/spring-boot-app/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-app/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/spring-boot-app/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-app/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/spring-boot-app/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-app/src/main/webapp/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/spring-boot-app/src/main/webapp/js/functions.js -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-webservice1/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/spring-boot-webservice1/build.gradle -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-webservice1/src/integrationTest/groovy/org/akhikhl/examples/gretty/springbootwebservice1/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/spring-boot-webservice1/src/integrationTest/groovy/org/akhikhl/examples/gretty/springbootwebservice1/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-webservice1/src/main/groovy/org/akhikhl/examples/gretty/springbootwebservice1/Application.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/spring-boot-webservice1/src/main/groovy/org/akhikhl/examples/gretty/springbootwebservice1/Application.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-webservice1/src/main/groovy/org/akhikhl/examples/gretty/springbootwebservice1/MyController.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/spring-boot-webservice1/src/main/groovy/org/akhikhl/examples/gretty/springbootwebservice1/MyController.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-webservice2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/spring-boot-webservice2/build.gradle -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-webservice2/src/integrationTest/groovy/org/akhikhl/examples/gretty/springbootwebservice2/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/spring-boot-webservice2/src/integrationTest/groovy/org/akhikhl/examples/gretty/springbootwebservice2/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-webservice2/src/main/groovy/org/akhikhl/examples/gretty/springbootwebservice2/Application.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/spring-boot-webservice2/src/main/groovy/org/akhikhl/examples/gretty/springbootwebservice2/Application.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-farm/spring-boot-webservice2/src/main/groovy/org/akhikhl/examples/gretty/springbootwebservice2/MyController.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-farm/spring-boot-webservice2/src/main/groovy/org/akhikhl/examples/gretty/springbootwebservice2/MyController.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-simple/README.md -------------------------------------------------------------------------------- /integrationTests/spring-boot-simple/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-simple/build.gradle -------------------------------------------------------------------------------- /integrationTests/spring-boot-simple/src/integrationTest/groovy/org/akhikhl/examples/gretty/springbootsimple/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-simple/src/integrationTest/groovy/org/akhikhl/examples/gretty/springbootsimple/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-simple/src/main/groovy/org/akhikhl/examples/gretty/springbootsimple/Application.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-simple/src/main/groovy/org/akhikhl/examples/gretty/springbootsimple/Application.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-simple/src/main/groovy/org/akhikhl/examples/gretty/springbootsimple/MyController.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-simple/src/main/groovy/org/akhikhl/examples/gretty/springbootsimple/MyController.groovy -------------------------------------------------------------------------------- /integrationTests/spring-boot-simple/src/main/resources/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-simple/src/main/resources/application.properties -------------------------------------------------------------------------------- /integrationTests/spring-boot-simple/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-simple/src/main/resources/logback.xml -------------------------------------------------------------------------------- /integrationTests/spring-boot-simple/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/spring-boot-simple/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-simple/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/spring-boot-simple/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-simple/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/spring-boot-simple/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-simple/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/spring-boot-simple/src/main/webapp/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/spring-boot-simple/src/main/webapp/js/functions.js -------------------------------------------------------------------------------- /integrationTests/springBootWebSocket/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/springBootWebSocket/build.gradle -------------------------------------------------------------------------------- /integrationTests/springBootWebSocket/src/integrationTest/groovy/org/akhikhl/examples/gretty/springbootwebsocket/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/springBootWebSocket/src/integrationTest/groovy/org/akhikhl/examples/gretty/springbootwebsocket/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/springBootWebSocket/src/main/java/org/akhikhl/examples/gretty/springbootwebsocket/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/springBootWebSocket/src/main/java/org/akhikhl/examples/gretty/springbootwebsocket/Application.java -------------------------------------------------------------------------------- /integrationTests/springBootWebSocket/src/main/java/org/akhikhl/examples/gretty/springbootwebsocket/Greeting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/springBootWebSocket/src/main/java/org/akhikhl/examples/gretty/springbootwebsocket/Greeting.java -------------------------------------------------------------------------------- /integrationTests/springBootWebSocket/src/main/java/org/akhikhl/examples/gretty/springbootwebsocket/GreetingController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/springBootWebSocket/src/main/java/org/akhikhl/examples/gretty/springbootwebsocket/GreetingController.java -------------------------------------------------------------------------------- /integrationTests/springBootWebSocket/src/main/java/org/akhikhl/examples/gretty/springbootwebsocket/HelloMessage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/springBootWebSocket/src/main/java/org/akhikhl/examples/gretty/springbootwebsocket/HelloMessage.java -------------------------------------------------------------------------------- /integrationTests/springBootWebSocket/src/main/java/org/akhikhl/examples/gretty/springbootwebsocket/WebSocketConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/springBootWebSocket/src/main/java/org/akhikhl/examples/gretty/springbootwebsocket/WebSocketConfig.java -------------------------------------------------------------------------------- /integrationTests/springBootWebSocket/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/springBootWebSocket/src/main/resources/logback.xml -------------------------------------------------------------------------------- /integrationTests/springBootWebSocket/src/main/resources/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/springBootWebSocket/src/main/resources/static/index.html -------------------------------------------------------------------------------- /integrationTests/springBootWebSocket/src/main/resources/static/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/springBootWebSocket/src/main/resources/static/js/index.js -------------------------------------------------------------------------------- /integrationTests/testAnnotations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testAnnotations/README.md -------------------------------------------------------------------------------- /integrationTests/testAnnotations/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testAnnotations/build.gradle -------------------------------------------------------------------------------- /integrationTests/testAnnotations/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testAnnotations/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy -------------------------------------------------------------------------------- /integrationTests/testAnnotations/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testAnnotations/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/testAnnotations/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testAnnotations/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/testAnnotations/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/testAnnotations/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testAnnotations/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/testAnnotations/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testAnnotations/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/testAnnotationsOverlay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testAnnotationsOverlay/README.md -------------------------------------------------------------------------------- /integrationTests/testAnnotationsOverlay/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testAnnotationsOverlay/build.gradle -------------------------------------------------------------------------------- /integrationTests/testAnnotationsOverlay/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testAnnotationsOverlay/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy -------------------------------------------------------------------------------- /integrationTests/testAnnotationsOverlay/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testAnnotationsOverlay/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/testDependency/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testDependency/build.gradle -------------------------------------------------------------------------------- /integrationTests/testDependency/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testDependency/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/PageSpec.groovy -------------------------------------------------------------------------------- /integrationTests/testDuplicatingResources/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testDuplicatingResources/build.gradle -------------------------------------------------------------------------------- /integrationTests/testDuplicatingResources/src/integrationTest/groovy/org/akhikhl/examples/gretty/CheckIfWebInfLibsNotEmpty.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testDuplicatingResources/src/integrationTest/groovy/org/akhikhl/examples/gretty/CheckIfWebInfLibsNotEmpty.groovy -------------------------------------------------------------------------------- /integrationTests/testDuplicatingResources/src/main/java/HelloServlet2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testDuplicatingResources/src/main/java/HelloServlet2.java -------------------------------------------------------------------------------- /integrationTests/testDuplicatingResources/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testDuplicatingResources/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/testInitParameter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testInitParameter/README.md -------------------------------------------------------------------------------- /integrationTests/testInitParameter/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testInitParameter/build.gradle -------------------------------------------------------------------------------- /integrationTests/testInitParameter/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testInitParameter/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/testInitParameter/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testInitParameter/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/testInitParameter/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testInitParameter/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/testInitParameter/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/testInitParameter/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testInitParameter/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/testInitParameter/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testInitParameter/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/testInitParameter/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testInitParameter/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/testJettyContextConfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyContextConfig/README.md -------------------------------------------------------------------------------- /integrationTests/testJettyContextConfig/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyContextConfig/build.gradle -------------------------------------------------------------------------------- /integrationTests/testJettyContextConfig/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyContextConfig/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/testJettyContextConfig/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyContextConfig/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/testJettyContextConfig/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyContextConfig/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/testJettyContextConfig/src/main/webapp/META-INF/jetty11-env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyContextConfig/src/main/webapp/META-INF/jetty11-env.xml -------------------------------------------------------------------------------- /integrationTests/testJettyContextConfig/src/main/webapp/META-INF/jetty12-env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyContextConfig/src/main/webapp/META-INF/jetty12-env.xml -------------------------------------------------------------------------------- /integrationTests/testJettyContextConfig/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/testJettyContextConfig/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyContextConfig/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/testJettyContextConfig/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyContextConfig/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/testJettyContextConfig/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyContextConfig/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/testJettyRandomPorts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyRandomPorts/README.md -------------------------------------------------------------------------------- /integrationTests/testJettyRandomPorts/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyRandomPorts/build.gradle -------------------------------------------------------------------------------- /integrationTests/testJettyRandomPorts/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyRandomPorts/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/testJettyRandomPorts/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyRandomPorts/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/testJettyRandomPorts/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyRandomPorts/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/testJettyRandomPorts/src/main/webapp/META-INF/jetty11-env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyRandomPorts/src/main/webapp/META-INF/jetty11-env.xml -------------------------------------------------------------------------------- /integrationTests/testJettyRandomPorts/src/main/webapp/META-INF/jetty12-env.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyRandomPorts/src/main/webapp/META-INF/jetty12-env.xml -------------------------------------------------------------------------------- /integrationTests/testJettyRandomPorts/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/testJettyRandomPorts/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyRandomPorts/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/testJettyRandomPorts/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyRandomPorts/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/testJettyRandomPorts/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyRandomPorts/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/testJettyServerConfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyServerConfig/README.md -------------------------------------------------------------------------------- /integrationTests/testJettyServerConfig/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyServerConfig/build.gradle -------------------------------------------------------------------------------- /integrationTests/testJettyServerConfig/jetty/jetty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyServerConfig/jetty/jetty.xml -------------------------------------------------------------------------------- /integrationTests/testJettyServerConfig/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyServerConfig/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/testJettyServerConfig/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyServerConfig/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/testJettyServerConfig/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyServerConfig/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/testJettyServerConfig/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/testJettyServerConfig/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyServerConfig/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/testJettyServerConfig/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyServerConfig/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/testJettyServerConfig/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testJettyServerConfig/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/testTomcatContextConfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatContextConfig/README.md -------------------------------------------------------------------------------- /integrationTests/testTomcatContextConfig/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatContextConfig/build.gradle -------------------------------------------------------------------------------- /integrationTests/testTomcatContextConfig/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatContextConfig/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/testTomcatContextConfig/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatContextConfig/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/testTomcatContextConfig/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatContextConfig/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/testTomcatContextConfig/src/main/webapp/META-INF/context.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatContextConfig/src/main/webapp/META-INF/context.xml -------------------------------------------------------------------------------- /integrationTests/testTomcatContextConfig/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/testTomcatContextConfig/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatContextConfig/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/testTomcatContextConfig/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatContextConfig/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/testTomcatContextConfig/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatContextConfig/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/testTomcatRandomPorts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatRandomPorts/README.md -------------------------------------------------------------------------------- /integrationTests/testTomcatRandomPorts/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatRandomPorts/build.gradle -------------------------------------------------------------------------------- /integrationTests/testTomcatRandomPorts/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatRandomPorts/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/testTomcatRandomPorts/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatRandomPorts/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/testTomcatRandomPorts/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatRandomPorts/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/testTomcatRandomPorts/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/testTomcatRandomPorts/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatRandomPorts/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/testTomcatRandomPorts/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatRandomPorts/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/testTomcatRandomPorts/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatRandomPorts/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/testTomcatServerConfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatServerConfig/README.md -------------------------------------------------------------------------------- /integrationTests/testTomcatServerConfig/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatServerConfig/build.gradle -------------------------------------------------------------------------------- /integrationTests/testTomcatServerConfig/server/server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatServerConfig/server/server.xml -------------------------------------------------------------------------------- /integrationTests/testTomcatServerConfig/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatServerConfig/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/testTomcatServerConfig/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatServerConfig/src/main/java/org/akhikhl/examples/gretty/hellogretty/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/testTomcatServerConfig/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatServerConfig/src/main/resources/org/akhikhl/examples/gretty/hellogretty/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/testTomcatServerConfig/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/testTomcatServerConfig/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatServerConfig/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/testTomcatServerConfig/src/main/webapp/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatServerConfig/src/main/webapp/css/default.css -------------------------------------------------------------------------------- /integrationTests/testTomcatServerConfig/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testTomcatServerConfig/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/testWar/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testWar/build.gradle -------------------------------------------------------------------------------- /integrationTests/testWar/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/testWar/src/integrationTest/groovy/org/akhikhl/examples/gretty/hellogretty/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/webfragment/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/webfragment/build.gradle -------------------------------------------------------------------------------- /integrationTests/webfragment/src/main/java/org/akhikhl/examples/gretty/webfragment/ExampleServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/webfragment/src/main/java/org/akhikhl/examples/gretty/webfragment/ExampleServlet.java -------------------------------------------------------------------------------- /integrationTests/webfragment/src/main/resources/META-INF/resources/images/webfragment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/webfragment/src/main/resources/META-INF/resources/images/webfragment.png -------------------------------------------------------------------------------- /integrationTests/webfragment/src/main/resources/META-INF/resources/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/webfragment/src/main/resources/META-INF/resources/index.html -------------------------------------------------------------------------------- /integrationTests/webfragment/src/main/resources/META-INF/web-fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/webfragment/src/main/resources/META-INF/web-fragment.xml -------------------------------------------------------------------------------- /integrationTests/webfragment/src/main/resources/org/akhikhl/examples/gretty/webfragment/templates/servletpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/webfragment/src/main/resources/org/akhikhl/examples/gretty/webfragment/templates/servletpage.html -------------------------------------------------------------------------------- /integrationTests/webhost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/webhost/README.md -------------------------------------------------------------------------------- /integrationTests/webhost/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/webhost/build.gradle -------------------------------------------------------------------------------- /integrationTests/webhost/src/integrationTest/groovy/org/akhikhl/examples/gretty/webhost/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/webhost/src/integrationTest/groovy/org/akhikhl/examples/gretty/webhost/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/webhost/src/main/webapp/WEB-INF/filter.groovy: -------------------------------------------------------------------------------- 1 | filter relPath: '/', { 2 | redirect 'index.html' 3 | } 4 | -------------------------------------------------------------------------------- /integrationTests/webhost/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/webhost/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /integrationTests/websocket/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/websocket/build.gradle -------------------------------------------------------------------------------- /integrationTests/websocket/src/integrationTest/groovy/org/akhikhl/examples/gretty/websocket/RequestResponseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/websocket/src/integrationTest/groovy/org/akhikhl/examples/gretty/websocket/RequestResponseIT.groovy -------------------------------------------------------------------------------- /integrationTests/websocket/src/main/java/org/akhikhl/examples/gretty/websocket/EventSocket.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/websocket/src/main/java/org/akhikhl/examples/gretty/websocket/EventSocket.java -------------------------------------------------------------------------------- /integrationTests/websocket/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/websocket/src/main/resources/logback.xml -------------------------------------------------------------------------------- /integrationTests/websocket/src/main/webapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/websocket/src/main/webapp/index.html -------------------------------------------------------------------------------- /integrationTests/websocket/src/main/webapp/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/integrationTests/websocket/src/main/webapp/js/index.js -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/jitpack.yml -------------------------------------------------------------------------------- /libs/gretty-common/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-common/build.gradle -------------------------------------------------------------------------------- /libs/gretty-common/src/main/groovy/org/akhikhl/gretty/ServiceProtocol.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-common/src/main/groovy/org/akhikhl/gretty/ServiceProtocol.groovy -------------------------------------------------------------------------------- /libs/gretty-core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-core/build.gradle -------------------------------------------------------------------------------- /libs/gretty-core/src/main/groovy/org/akhikhl/gretty/ConfigUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-core/src/main/groovy/org/akhikhl/gretty/ConfigUtils.groovy -------------------------------------------------------------------------------- /libs/gretty-core/src/main/groovy/org/akhikhl/gretty/Externalized.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-core/src/main/groovy/org/akhikhl/gretty/Externalized.groovy -------------------------------------------------------------------------------- /libs/gretty-core/src/main/groovy/org/akhikhl/gretty/FarmConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-core/src/main/groovy/org/akhikhl/gretty/FarmConfig.groovy -------------------------------------------------------------------------------- /libs/gretty-core/src/main/groovy/org/akhikhl/gretty/FarmsConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-core/src/main/groovy/org/akhikhl/gretty/FarmsConfig.groovy -------------------------------------------------------------------------------- /libs/gretty-core/src/main/groovy/org/akhikhl/gretty/GrettyConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-core/src/main/groovy/org/akhikhl/gretty/GrettyConfig.groovy -------------------------------------------------------------------------------- /libs/gretty-core/src/main/groovy/org/akhikhl/gretty/JavaExecParams.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-core/src/main/groovy/org/akhikhl/gretty/JavaExecParams.groovy -------------------------------------------------------------------------------- /libs/gretty-core/src/main/groovy/org/akhikhl/gretty/Launcher.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-core/src/main/groovy/org/akhikhl/gretty/Launcher.groovy -------------------------------------------------------------------------------- /libs/gretty-core/src/main/groovy/org/akhikhl/gretty/LauncherBase.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-core/src/main/groovy/org/akhikhl/gretty/LauncherBase.groovy -------------------------------------------------------------------------------- /libs/gretty-core/src/main/groovy/org/akhikhl/gretty/LauncherConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-core/src/main/groovy/org/akhikhl/gretty/LauncherConfig.groovy -------------------------------------------------------------------------------- /libs/gretty-core/src/main/groovy/org/akhikhl/gretty/ServerConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-core/src/main/groovy/org/akhikhl/gretty/ServerConfig.groovy -------------------------------------------------------------------------------- /libs/gretty-core/src/main/groovy/org/akhikhl/gretty/StartConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-core/src/main/groovy/org/akhikhl/gretty/StartConfig.groovy -------------------------------------------------------------------------------- /libs/gretty-core/src/main/groovy/org/akhikhl/gretty/WebAppClassPathResolver.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-core/src/main/groovy/org/akhikhl/gretty/WebAppClassPathResolver.groovy -------------------------------------------------------------------------------- /libs/gretty-core/src/main/groovy/org/akhikhl/gretty/WebAppConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-core/src/main/groovy/org/akhikhl/gretty/WebAppConfig.groovy -------------------------------------------------------------------------------- /libs/gretty-core/src/main/resources/org/akhikhl/gretty/Externalized.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-core/src/main/resources/org/akhikhl/gretty/Externalized.properties -------------------------------------------------------------------------------- /libs/gretty-filter/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-filter/build.gradle -------------------------------------------------------------------------------- /libs/gretty-filter/src/main/groovy/org/akhikhl/gretty/RedirectFilter.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-filter/src/main/groovy/org/akhikhl/gretty/RedirectFilter.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-api/build.gradle: -------------------------------------------------------------------------------- 1 | plugins { 2 | id 'grettybuild.library' 3 | } 4 | -------------------------------------------------------------------------------- /libs/gretty-runner-api/src/main/java/org/akhikhl/gretty/ServerDefaults.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-api/src/main/java/org/akhikhl/gretty/ServerDefaults.java -------------------------------------------------------------------------------- /libs/gretty-runner-api/src/main/java/org/akhikhl/gretty/ServerManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-api/src/main/java/org/akhikhl/gretty/ServerManager.java -------------------------------------------------------------------------------- /libs/gretty-runner-api/src/main/java/org/akhikhl/gretty/ServerStartEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-api/src/main/java/org/akhikhl/gretty/ServerStartEvent.java -------------------------------------------------------------------------------- /libs/gretty-runner-jetty/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty/build.gradle -------------------------------------------------------------------------------- /libs/gretty-runner-jetty/src/main/groovy/org/akhikhl/gretty/BaseResourceConfiguration.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty/src/main/groovy/org/akhikhl/gretty/BaseResourceConfiguration.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-jetty/src/main/groovy/org/akhikhl/gretty/JettyConfigurer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty/src/main/groovy/org/akhikhl/gretty/JettyConfigurer.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-jetty/src/main/groovy/org/akhikhl/gretty/JettyConfigurerBase.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty/src/main/groovy/org/akhikhl/gretty/JettyConfigurerBase.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-jetty/src/main/groovy/org/akhikhl/gretty/JettyServerConfigurer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty/src/main/groovy/org/akhikhl/gretty/JettyServerConfigurer.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-jetty/src/main/groovy/org/akhikhl/gretty/JettyServerManager.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty/src/main/groovy/org/akhikhl/gretty/JettyServerManager.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-jetty/src/main/groovy/org/akhikhl/gretty/JettyServerStartInfo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty/src/main/groovy/org/akhikhl/gretty/JettyServerStartInfo.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-jetty/src/main/groovy/org/akhikhl/gretty/ServerManagerFactory.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty/src/main/groovy/org/akhikhl/gretty/ServerManagerFactory.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-jetty11/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty11/build.gradle -------------------------------------------------------------------------------- /libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/JettyConfigurerImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/JettyConfigurerImpl.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/JettyWebAppContext.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/JettyWebAppContext.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/SSOAuthenticatorFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/SSOAuthenticatorFactory.java -------------------------------------------------------------------------------- /libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/SSOBasicAuthenticator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/SSOBasicAuthenticator.java -------------------------------------------------------------------------------- /libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/SSOClientCertAuthenticator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/SSOClientCertAuthenticator.java -------------------------------------------------------------------------------- /libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/SSODigestAuthenticator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/SSODigestAuthenticator.java -------------------------------------------------------------------------------- /libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/SSOHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/SSOHelper.java -------------------------------------------------------------------------------- /libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/SSOSpnegoAuthenticator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/SSOSpnegoAuthenticator.java -------------------------------------------------------------------------------- /libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/SingleSignOnSessionHandler.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/SingleSignOnSessionHandler.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/WebInfConfigurationEx.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty11/src/main/groovy/org/akhikhl/gretty/WebInfConfigurationEx.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-jetty12/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty12/build.gradle -------------------------------------------------------------------------------- /libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/JettyConfigurerImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/JettyConfigurerImpl.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/JettyWebAppContext.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/JettyWebAppContext.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/SSOAuthenticatorFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/SSOAuthenticatorFactory.java -------------------------------------------------------------------------------- /libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/SSOBasicAuthenticator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/SSOBasicAuthenticator.java -------------------------------------------------------------------------------- /libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/SSOClientCertAuthenticator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/SSOClientCertAuthenticator.java -------------------------------------------------------------------------------- /libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/SSODigestAuthenticator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/SSODigestAuthenticator.java -------------------------------------------------------------------------------- /libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/SSOHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/SSOHelper.java -------------------------------------------------------------------------------- /libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/SSOSpnegoAuthenticator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/SSOSpnegoAuthenticator.java -------------------------------------------------------------------------------- /libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/SingleSignOnSessionHandler.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/SingleSignOnSessionHandler.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/WebInfConfigurationEx.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-jetty12/src/main/groovy/org/akhikhl/gretty/WebInfConfigurationEx.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-tomcat/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-tomcat/build.gradle -------------------------------------------------------------------------------- /libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/AbstractTomcatConfigurerImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/AbstractTomcatConfigurerImpl.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/JarSkipPatterns.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/JarSkipPatterns.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/ServerManagerFactory.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/ServerManagerFactory.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/SkipPatternJarScanner.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/SkipPatternJarScanner.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/SpringloadedCleanup.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/SpringloadedCleanup.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/TomcatConfigurer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/TomcatConfigurer.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/TomcatServerConfigurer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/TomcatServerConfigurer.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/TomcatServerManager.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/TomcatServerManager.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/TomcatServerStartInfo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-tomcat/src/main/groovy/org/akhikhl/gretty/TomcatServerStartInfo.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-tomcat10/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-tomcat10/build.gradle -------------------------------------------------------------------------------- /libs/gretty-runner-tomcat10/src/main/groovy/org/akhikhl/gretty/TomcatConfigurerImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-tomcat10/src/main/groovy/org/akhikhl/gretty/TomcatConfigurerImpl.groovy -------------------------------------------------------------------------------- /libs/gretty-runner-tomcat11/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-tomcat11/build.gradle -------------------------------------------------------------------------------- /libs/gretty-runner-tomcat11/src/main/groovy/org/akhikhl/gretty/TomcatConfigurerImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner-tomcat11/src/main/groovy/org/akhikhl/gretty/TomcatConfigurerImpl.groovy -------------------------------------------------------------------------------- /libs/gretty-runner/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner/build.gradle -------------------------------------------------------------------------------- /libs/gretty-runner/src/main/groovy/org/akhikhl/gretty/Runner.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-runner/src/main/groovy/org/akhikhl/gretty/Runner.groovy -------------------------------------------------------------------------------- /libs/gretty-spock/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-spock/build.gradle -------------------------------------------------------------------------------- /libs/gretty-spock/src/main/groovy/org/akhikhl/gretty/GrettyAjaxSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-spock/src/main/groovy/org/akhikhl/gretty/GrettyAjaxSpec.groovy -------------------------------------------------------------------------------- /libs/gretty-springboot/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-springboot/build.gradle -------------------------------------------------------------------------------- /libs/gretty-springboot/src/main/groovy/org/akhikhl/gretty/AppServletInitializer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-springboot/src/main/groovy/org/akhikhl/gretty/AppServletInitializer.java -------------------------------------------------------------------------------- /libs/gretty-starter/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-starter/build.gradle -------------------------------------------------------------------------------- /libs/gretty-starter/src/main/groovy/org/akhikhl/gretty/GrettyStarter.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-starter/src/main/groovy/org/akhikhl/gretty/GrettyStarter.groovy -------------------------------------------------------------------------------- /libs/gretty-starter/src/main/groovy/org/akhikhl/gretty/PlatformUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-starter/src/main/groovy/org/akhikhl/gretty/PlatformUtils.groovy -------------------------------------------------------------------------------- /libs/gretty-starter/src/main/groovy/org/akhikhl/gretty/StarterLauncher.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty-starter/src/main/groovy/org/akhikhl/gretty/StarterLauncher.groovy -------------------------------------------------------------------------------- /libs/gretty/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/build.gradle -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/AppAfterIntegrationTestTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/AppAfterIntegrationTestTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/AppBeforeIntegrationTestTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/AppBeforeIntegrationTestTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/AppRedeployTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/AppRedeployTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/AppRestartTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/AppRestartTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/AppServiceTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/AppServiceTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/AppStartTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/AppStartTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/AppStopTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/AppStopTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/CertificateGenerator.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/CertificateGenerator.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/DefaultLauncher.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/DefaultLauncher.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmAfterIntegrationTestTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmAfterIntegrationTestTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmBeforeIntegrationTestTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmBeforeIntegrationTestTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmConfigurer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmConfigurer.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmConfigurerUtil.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmConfigurerUtil.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmExtension.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmIntegrationTestTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmIntegrationTestTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmRestartTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmRestartTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmServiceTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmServiceTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmStartTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmStartTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmStopTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmStopTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmWebappType.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmWebappType.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmsExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/FarmsExtension.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/FileReloadSpec.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/FileReloadSpec.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/FileResolver.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/FileResolver.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/GradleUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/GradleUtils.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/GrettyExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/GrettyExtension.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/GrettyPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/GrettyPlugin.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/JacocoHelper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/JacocoHelper.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/JettyScannerManager.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/JettyScannerManager.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/JettyStartTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/JettyStartTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/ManagedDirectory.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/ManagedDirectory.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/ProductConfigurer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/ProductConfigurer.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/ProductExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/ProductExtension.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/ProductsConfigurer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/ProductsConfigurer.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/ProductsExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/ProductsExtension.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/ProjectReloadUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/ProjectReloadUtils.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/ProjectUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/ProjectUtils.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/ScannerManager.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/ScannerManager.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/ServletContainerConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/ServletContainerConfig.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/SpringBootMainClassFinder.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/SpringBootMainClassFinder.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/StartBaseTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/StartBaseTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/TaskWithServerConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/TaskWithServerConfig.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/TaskWithWebAppConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/TaskWithWebAppConfig.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/TomcatStartTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/TomcatStartTask.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/scanner/BaseScannerManager.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/scanner/BaseScannerManager.groovy -------------------------------------------------------------------------------- /libs/gretty/src/main/groovy/org/akhikhl/gretty/scanner/JDKScannerManager.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/libs/gretty/src/main/groovy/org/akhikhl/gretty/scanner/JDKScannerManager.groovy -------------------------------------------------------------------------------- /pluginScripts/gretty-1.1.0.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.1.0.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.1.1.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.1.1.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.1.2.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.1.2.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.1.3.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.1.3.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.1.4.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.1.4.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.1.5.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.1.5.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.1.6.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.1.6.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.1.7.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.1.7.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.1.8.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.1.8.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.1.9.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.1.9.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.2.0.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.2.0.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.2.1.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.2.1.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.2.2.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.2.2.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.2.3.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.2.3.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.2.4.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.2.4.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.2.5.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.2.5.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.3.0.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.3.0.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.4.0.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.4.0.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.4.1.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.4.1.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-1.4.2.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-1.4.2.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-2.0.0.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-2.0.0.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-2.1.0.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-2.1.0.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-2.2.0.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-2.2.0.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-2.3.0.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-2.3.0.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-3.0.1.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-3.0.1.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-3.0.2.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-3.0.2.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-3.0.3.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-3.0.3.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-3.0.5.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-3.0.5.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-3.0.6.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-3.0.6.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-4.0.0.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-4.0.0.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-4.0.1.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-4.0.1.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-4.0.2.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-4.0.2.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-4.0.3.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-4.0.3.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-4.1.0.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-4.1.0.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-4.1.1.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-4.1.1.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-4.1.10.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-4.1.10.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-4.1.2.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-4.1.2.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-4.1.3.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-4.1.3.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-4.1.4.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-4.1.4.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-4.1.5.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-4.1.5.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-4.1.6.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-4.1.6.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-4.1.7.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-4.1.7.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-4.1.8.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-4.1.8.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-5.0.0.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-5.0.0.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-5.0.1.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-5.0.1.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty-SNAPSHOT.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty-SNAPSHOT.plugin -------------------------------------------------------------------------------- /pluginScripts/gretty.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/pluginScripts/gretty.plugin -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gretty-gradle-plugin/gretty/HEAD/settings.gradle --------------------------------------------------------------------------------