├── .classpath ├── .gitignore ├── .project ├── .settings └── org.codehaus.groovy.eclipse.preferences.prefs ├── .travis.yml ├── CorsGrailsPlugin.groovy ├── README.md ├── application.properties ├── grails-app └── conf │ ├── BuildConfig.groovy │ ├── Config.groovy │ └── DataSource.groovy ├── grailsw ├── grailsw.bat ├── src └── java │ └── com │ └── brandseye │ └── cors │ ├── CorsCompatibleBasicAuthenticationEntryPoint.java │ └── CorsFilter.java ├── test └── unit │ └── com │ └── brandseye │ └── cors │ ├── CorsCompatibleBasicAuthenticationEntryPointTests.groovy │ └── CorsFilterTest.groovy └── wrapper ├── grails-wrapper-runtime-2.2.1.jar ├── grails-wrapper.properties └── springloaded-core-1.1.1.jar /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/.project -------------------------------------------------------------------------------- /.settings/org.codehaus.groovy.eclipse.preferences.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/.settings/org.codehaus.groovy.eclipse.preferences.prefs -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/.travis.yml -------------------------------------------------------------------------------- /CorsGrailsPlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/CorsGrailsPlugin.groovy -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/README.md -------------------------------------------------------------------------------- /application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/application.properties -------------------------------------------------------------------------------- /grails-app/conf/BuildConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/grails-app/conf/BuildConfig.groovy -------------------------------------------------------------------------------- /grails-app/conf/Config.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/grails-app/conf/Config.groovy -------------------------------------------------------------------------------- /grails-app/conf/DataSource.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/grails-app/conf/DataSource.groovy -------------------------------------------------------------------------------- /grailsw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/grailsw -------------------------------------------------------------------------------- /grailsw.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/grailsw.bat -------------------------------------------------------------------------------- /src/java/com/brandseye/cors/CorsCompatibleBasicAuthenticationEntryPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/src/java/com/brandseye/cors/CorsCompatibleBasicAuthenticationEntryPoint.java -------------------------------------------------------------------------------- /src/java/com/brandseye/cors/CorsFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/src/java/com/brandseye/cors/CorsFilter.java -------------------------------------------------------------------------------- /test/unit/com/brandseye/cors/CorsCompatibleBasicAuthenticationEntryPointTests.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/test/unit/com/brandseye/cors/CorsCompatibleBasicAuthenticationEntryPointTests.groovy -------------------------------------------------------------------------------- /test/unit/com/brandseye/cors/CorsFilterTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/test/unit/com/brandseye/cors/CorsFilterTest.groovy -------------------------------------------------------------------------------- /wrapper/grails-wrapper-runtime-2.2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/wrapper/grails-wrapper-runtime-2.2.1.jar -------------------------------------------------------------------------------- /wrapper/grails-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/wrapper/grails-wrapper.properties -------------------------------------------------------------------------------- /wrapper/springloaded-core-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidtinker/grails-cors/HEAD/wrapper/springloaded-core-1.1.1.jar --------------------------------------------------------------------------------