├── .gitattributes ├── .gitignore └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh eol=lf 2 | *.bat eol=crlf 3 | *.txt eol=lf 4 | *.properties eol=lf 5 | *.java eol=lf 6 | *.mod eol=lf 7 | *.adoc eol=lf 8 | *.xml eol=lf 9 | Jenkinsfile eol=lf 10 | *.js eol=lf 11 | *.raw binary 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # maven 2 | target 3 | *.versionsBackup 4 | *.releaseBackup 5 | 6 | # common junk 7 | *.log 8 | *.diff 9 | *.patch 10 | *.sw[a-z0-9] 11 | *.bak 12 | *.backup 13 | *.debug 14 | *.dump 15 | *~ 16 | ~* 17 | 18 | # eclipse 19 | .project 20 | .settings 21 | .classpath 22 | 23 | # intellij / idea 24 | *.iml 25 | *.ipr 26 | *.iws 27 | .idea/ 28 | 29 | # netbeans 30 | nbproject/ 31 | 32 | # Mac filesystem dust 33 | .DS_Store 34 | 35 | # merge tooling 36 | *.orig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # The contents of this repository have been moved 2 | 3 | See: https://github.com/jetty/jetty-examples for the current and up-to-date Jetty examples. 4 | 5 | | Jetty | Path | 6 | |----------|----------------------------------------------------------------------------------------------| 7 | | Jetty 12 | [`embedded/ee10-jsp`](https://github.com/jetty/jetty-examples/tree/12.0.x/embedded/ee10-jsp) | 8 | | Jetty 11 | [`embedded/jsp`](https://github.com/jetty/jetty-examples/tree/11.0.x/embedded/jsp) | 9 | | Jetty 10 | [`embedded/jsp`](https://github.com/jetty/jetty-examples/tree/10.0.x/embedded/jsp) | 10 | | Jetty 9 | [`embedded/jsp`](https://github.com/jetty/jetty-examples/tree/9.4.x/embedded/jsp) | --------------------------------------------------------------------------------