Skip to content
This repository has been archived by the owner on Mar 8, 2019. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
donbeave committed May 25, 2014
2 parents 31d7f9e + edd8d00 commit c4fa040
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
6 changes: 4 additions & 2 deletions grails-app/conf/BuildConfig.groovy
@@ -1,3 +1,4 @@

grails.project.class.dir = 'target/classes'
grails.project.test.class.dir = 'target/test-classes'
grails.project.test.reports.dir = 'target/test-reports'
Expand All @@ -13,14 +14,15 @@ grails.project.dependency.resolution = {
mavenLocal()
mavenCentral()
mavenRepo 'http://repo.spring.io/milestone'
mavenRepo 'https://raw.github.com/fernandezpablo85/scribe-java/mvn-repo'
}
dependencies {
}

plugins {
compile ':spring-security-oauth:2.1.0-RC2'
compile ':spring-security-oauth:2.1.0-RC3'

build(':release:3.0.1', ':rest-client-builder:1.0.3') {
build(':release:3.0.1', ':rest-client-builder:2.0.1') {
export = false
}
}
Expand Down
11 changes: 10 additions & 1 deletion grails-app/conf/Config.groovy
Expand Up @@ -18,7 +18,16 @@ log4j = {
environments {
test {
oauth {
providers {}
providers {
facebook {
api = org.scribe.builder.api.FacebookApi
key = 'oauth_facebook_key'
secret = 'oauth_facebook_secret'
successUri = '/oauth/facebook/success'
failureUri = '/oauth/facebook/failure'
callback = "/oauth/facebook/callback"
}
}
}
}
}

0 comments on commit c4fa040

Please sign in to comment.