├── .gitattributes ├── README.md └── .gitignore /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | *.{cmd,[cC][mM][dD]} text eol=crlf 3 | *.{bat,[bB][aA][tT]} text eol=crlf 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # This project has moved to [mlipper/geoclient](https://github.com/mlipper/geoclient) 2 | 3 | The actively maintained Geoclient project is here: [https://github.com/mlipper/geoclient](https://github.com/mlipper/geoclient) 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Intellij 2 | **/*.iml 3 | **/*.ipr 4 | **/*.iws 5 | **/.idea 6 | **/*.eml 7 | 8 | # Eclipse 9 | **/.classpath 10 | **/.project 11 | **/.settings/ 12 | **/.springBeans 13 | **/bin/ 14 | **/.sts4-cache/ 15 | 16 | # VisualStudio 17 | **/.vs 18 | **/vs/ 19 | **/.vscode/ 20 | 21 | # Vim 22 | **/*.swp 23 | 24 | # Gradle & other common build artifacts 25 | **/build 26 | **/target 27 | **/out 28 | **/.gradle 29 | **/classes 30 | **/.gradletasknamecache 31 | 32 | **/*.log 33 | 34 | # Local native development artifacts 35 | #**/geoclient-test 36 | **/maven-repo 37 | 38 | # User-specific stuff 39 | **/.env 40 | !images/.env 41 | **/.local 42 | **/notes 43 | **/.DS_Store 44 | **/temp 45 | **/local-plugins 46 | **/manifests/release 47 | **/docs-static --------------------------------------------------------------------------------