-
Notifications
You must be signed in to change notification settings - Fork 4
/
build.gradle
88 lines (74 loc) · 2.45 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
buildscript {
ext {
grailsVersion = project.grailsVersion
}
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
classpath "com.bertramlabs.plugins:asset-pipeline-gradle:2.15.1"
}
}
def setIfNotSet = { String name, value ->
if (!project.ext.has(name)) {
project.ext[name] = value
}
}
setIfNotSet 'issueTrackerUrl', project.vcsUrl + '/issues'
setIfNotSet 'websiteUrl', project.vcsUrl
version "1.2.1.BUILD-SNAPSHOT"
group = 'org.grails.plugins'
apply plugin:"eclipse"
apply plugin: "idea"
apply plugin: "org.grails.grails-plugin"
apply plugin: "org.grails.grails-plugin-publish"
apply plugin: "org.grails.grails-gsp"
apply plugin: "asset-pipeline"
ext {
grailsVersion = project.grailsVersion
gradleWrapperVersion = project.gradleWrapperVersion
}
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencyManagement {
imports {
mavenBom "org.grails:grails-bom:$grailsVersion"
}
applyMavenExclusions false
}
dependencies {
console "org.grails:grails-console"
profile "org.grails.profiles:web-plugin"
provided 'javax.servlet:javax.servlet-api:3.1.0'
provided 'org.grails:grails-dependencies'
provided 'org.grails.plugins:spring-security-core:3.2.+'
provided 'org.grails.plugins:spring-security-oauth2:1.2.0'
provided "org.grails:grails-plugin-services"
runtime "com.bertramlabs.plugins:asset-pipeline-grails:2.15.1"
testCompile "cglib:cglib-nodep:2.2.2"
testCompile "org.grails:grails-plugin-testing"
testCompile "org.grails:grails-web-testing-support"
}
task wrapper(type: Wrapper) {
gradleVersion = gradleWrapperVersion
}
grailsPublish {
user = System.getProperty("BINTRAY_USER")
key = System.getProperty("BINTRAY_KEY")
githubSlug = 'grails-plugins/grails-spring-security-oauth2-google'
license {
name = 'Apache-2.0'
}
title = "Spring Security Oauth2 Google Provider"
desc = "This plugin provides the capability to authenticate via g+-oauth provider. Depends on grails-spring-security-oauth2. v1.2.0 starts after fork to grails-plugins org. Includes unreleased 1.1.1 from other repo."
developers = [MatrixCrawler: "Johannes Brunswicker",
rvanderwerf : "Ryan Vanderwerf"]
userOrg = 'grails'
}
assets {
packagePlugin = true
}