diff --git a/oauth-plugin/CHANGES.txt b/CHANGES.txt similarity index 100% rename from oauth-plugin/CHANGES.txt rename to CHANGES.txt diff --git a/oauth-plugin/LICENSE.txt b/LICENSE.txt similarity index 100% rename from oauth-plugin/LICENSE.txt rename to LICENSE.txt diff --git a/oauth-plugin/OauthGrailsPlugin.groovy b/OauthGrailsPlugin.groovy similarity index 98% rename from oauth-plugin/OauthGrailsPlugin.groovy rename to OauthGrailsPlugin.groovy index 662eacc..2973491 100644 --- a/oauth-plugin/OauthGrailsPlugin.groovy +++ b/OauthGrailsPlugin.groovy @@ -17,7 +17,7 @@ class OauthGrailsPlugin { - def version = 0.12 + def version = 0.13 def dependsOn = [:] def author = "Yong Rong (Damien) Hou, Anthony Campbell" def authorEmail = "houyongr [[at] gmail [dot]] com, acampbell3000 [[at] gmail [dot]] com" diff --git a/oauth-plugin/README.txt b/README.txt similarity index 100% rename from oauth-plugin/README.txt rename to README.txt diff --git a/oauth-plugin/application.properties b/application.properties similarity index 89% rename from oauth-plugin/application.properties rename to application.properties index 57db26b..1ab0cea 100644 --- a/oauth-plugin/application.properties +++ b/application.properties @@ -2,6 +2,6 @@ #Fri Aug 19 00:47:35 BST 2011 app.grails.version=1.3.7 app.name=oauth-plugin -app.version=0.12 +app.version=0.13 plugins.hibernate=1.3.7 plugins.tomcat=1.3.7 diff --git a/commons-codec-1.3.jar b/commons-codec-1.3.jar deleted file mode 100644 index 957b675..0000000 Binary files a/commons-codec-1.3.jar and /dev/null differ diff --git a/commons-httpclient-3.1.jar b/commons-httpclient-3.1.jar deleted file mode 100644 index 7c59774..0000000 Binary files a/commons-httpclient-3.1.jar and /dev/null differ diff --git a/core-20080328.jar b/core-20080328.jar deleted file mode 100644 index 2bcb772..0000000 Binary files a/core-20080328.jar and /dev/null differ diff --git a/oauth-plugin/grails-app/conf/BuildConfig.groovy b/grails-app/conf/BuildConfig.groovy similarity index 100% rename from oauth-plugin/grails-app/conf/BuildConfig.groovy rename to grails-app/conf/BuildConfig.groovy diff --git a/oauth-plugin/grails-app/conf/DataSource.groovy b/grails-app/conf/DataSource.groovy similarity index 100% rename from oauth-plugin/grails-app/conf/DataSource.groovy rename to grails-app/conf/DataSource.groovy diff --git a/oauth-plugin/grails-app/conf/UrlMappings.groovy b/grails-app/conf/UrlMappings.groovy similarity index 100% rename from oauth-plugin/grails-app/conf/UrlMappings.groovy rename to grails-app/conf/UrlMappings.groovy diff --git a/oauth-plugin/grails-app/controllers/org/grails/plugins/oauth/OauthController.groovy b/grails-app/controllers/org/grails/plugins/oauth/OauthController.groovy similarity index 100% rename from oauth-plugin/grails-app/controllers/org/grails/plugins/oauth/OauthController.groovy rename to grails-app/controllers/org/grails/plugins/oauth/OauthController.groovy diff --git a/oauth-plugin/grails-app/i18n/messages.properties b/grails-app/i18n/messages.properties similarity index 100% rename from oauth-plugin/grails-app/i18n/messages.properties rename to grails-app/i18n/messages.properties diff --git a/oauth-plugin/grails-app/services/org/grails/plugins/oauth/OauthService.groovy b/grails-app/services/org/grails/plugins/oauth/OauthService.groovy similarity index 100% rename from oauth-plugin/grails-app/services/org/grails/plugins/oauth/OauthService.groovy rename to grails-app/services/org/grails/plugins/oauth/OauthService.groovy diff --git a/oauth-plugin/grails-app/services/org/grails/plugins/oauth/OauthServiceException.groovy b/grails-app/services/org/grails/plugins/oauth/OauthServiceException.groovy similarity index 100% rename from oauth-plugin/grails-app/services/org/grails/plugins/oauth/OauthServiceException.groovy rename to grails-app/services/org/grails/plugins/oauth/OauthServiceException.groovy diff --git a/oauth-plugin/grails-app/taglib/org/grails/plugins/oauth/OauthTagLib.groovy b/grails-app/taglib/org/grails/plugins/oauth/OauthTagLib.groovy similarity index 100% rename from oauth-plugin/grails-app/taglib/org/grails/plugins/oauth/OauthTagLib.groovy rename to grails-app/taglib/org/grails/plugins/oauth/OauthTagLib.groovy diff --git a/oauth-plugin/.gitignore b/oauth-plugin/.gitignore deleted file mode 100644 index a9fa7d4..0000000 --- a/oauth-plugin/.gitignore +++ /dev/null @@ -1,13 +0,0 @@ -target -web-app -grails-app/taglib -grails-app/conf/Config.groovy -out -.classpath -.settings -plugin.xml -*.zip -*.iml -*.iws -*.ipr -.idea diff --git a/plugin.xml b/plugin.xml new file mode 100644 index 0000000..9bc14ab --- /dev/null +++ b/plugin.xml @@ -0,0 +1,19 @@ + + Yong Rong (Damien) Hou, Anthony Campbell + houyongr [[at] gmail [dot]] com, acampbell3000 [[at] gmail [dot]] com + Adds OAuth capability to Grails apps + Wraps up the Signpost OAuth Java implementation and provides out-of-the-box + OAuth functionality for Grails appplications. + http://www.grails.org/plugin/oauth + + BuildConfig + DataSource + UrlMappings + org.grails.plugins.oauth.OauthController + org.grails.plugins.oauth.OauthService + org.grails.plugins.oauth.OauthServiceException + org.grails.plugins.oauth.OauthTagLib + + + + \ No newline at end of file diff --git a/oauth-plugin/scripts/_Install.groovy b/scripts/_Install.groovy similarity index 100% rename from oauth-plugin/scripts/_Install.groovy rename to scripts/_Install.groovy diff --git a/oauth-plugin/scripts/_Upgrade.groovy b/scripts/_Upgrade.groovy similarity index 100% rename from oauth-plugin/scripts/_Upgrade.groovy rename to scripts/_Upgrade.groovy diff --git a/oauth-plugin/src/groovy/org/grails/plugins/oauth/OauthResponse.groovy b/src/groovy/org/grails/plugins/oauth/OauthResponse.groovy similarity index 100% rename from oauth-plugin/src/groovy/org/grails/plugins/oauth/OauthResponse.groovy rename to src/groovy/org/grails/plugins/oauth/OauthResponse.groovy diff --git a/oauth-plugin/web-app/WEB-INF/applicationContext.xml b/web-app/WEB-INF/applicationContext.xml similarity index 100% rename from oauth-plugin/web-app/WEB-INF/applicationContext.xml rename to web-app/WEB-INF/applicationContext.xml diff --git a/oauth-plugin/web-app/WEB-INF/sitemesh.xml b/web-app/WEB-INF/sitemesh.xml similarity index 100% rename from oauth-plugin/web-app/WEB-INF/sitemesh.xml rename to web-app/WEB-INF/sitemesh.xml diff --git a/oauth-plugin/web-app/WEB-INF/tld/c.tld b/web-app/WEB-INF/tld/c.tld similarity index 100% rename from oauth-plugin/web-app/WEB-INF/tld/c.tld rename to web-app/WEB-INF/tld/c.tld diff --git a/oauth-plugin/web-app/WEB-INF/tld/fmt.tld b/web-app/WEB-INF/tld/fmt.tld similarity index 100% rename from oauth-plugin/web-app/WEB-INF/tld/fmt.tld rename to web-app/WEB-INF/tld/fmt.tld diff --git a/oauth-plugin/web-app/WEB-INF/tld/grails.tld b/web-app/WEB-INF/tld/grails.tld similarity index 100% rename from oauth-plugin/web-app/WEB-INF/tld/grails.tld rename to web-app/WEB-INF/tld/grails.tld diff --git a/oauth-plugin/web-app/WEB-INF/tld/spring.tld b/web-app/WEB-INF/tld/spring.tld similarity index 100% rename from oauth-plugin/web-app/WEB-INF/tld/spring.tld rename to web-app/WEB-INF/tld/spring.tld diff --git a/oauth-plugin/web-app/images/google-oath-screenshot.jpg b/web-app/images/google-oath-screenshot.jpg similarity index 100% rename from oauth-plugin/web-app/images/google-oath-screenshot.jpg rename to web-app/images/google-oath-screenshot.jpg