forked from bobbywarner/grails-stripe
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathStripeGrailsPlugin.groovy
More file actions
20 lines (18 loc) · 926 Bytes
/
Copy pathStripeGrailsPlugin.groovy
File metadata and controls
20 lines (18 loc) · 926 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class StripeGrailsPlugin {
def version = "1.5-frontlinesms-SNAPSHOT"
def grailsVersion = "1.3.7 > *"
def dependsOn = ['resources':'1.1.6 > *']
def title = "Stripe"
def author = "Bobby Warner"
def authorEmail = "bobbywarner@gmail.com"
def description = "Plugin for using Stripe to process credit card transactions."
def documentation = "http://bobbywarner.github.com/grails-stripe"
def license = "APACHE"
def issueManagement = [ system: "GitHub", url: "https://github.com/bobbywarner/grails-stripe/issues" ]
def scm = [ url: "https://github.com/alxndrsn/grails-stripe" ]
def developers = [ [ name: "Nicholas Vaidyanathan", email: "visionary.software.solutions@gmail.com" ],
[ name: 'Alex Anderson', email: 'alex@frontlinesms.com' ] ]
def doWithApplicationContext = {
com.stripe.Stripe.apiKey = application.config.grails.plugins.stripe.secretKey
}
}