-
Notifications
You must be signed in to change notification settings - Fork 10
/
build.gradle
81 lines (70 loc) · 2.04 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
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.8.2"
}
}
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.1.0"
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 {
provided 'javax.servlet:javax.servlet-api:3.1.0'
provided 'org.grails:grails-dependencies'
compile 'org.codehaus.groovy:groovy-all:2.4.3'
provided 'org.grails.plugins:spring-security-core:3.+'
provided 'org.grails.plugins:spring-security-oauth2:1.1.0'
console "org.grails:grails-console"
}
task wrapper(type: Wrapper) {
gradleVersion = gradleWrapperVersion
}
grailsPublish {
// TODO: Provide values here
user = project.bintray_user
key = project.bintray_key
githubSlug = 'MatrixCrawler/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."
developers = [johndoe: "John Doe"]
portalUser = ""
portalPassword = ""
}
assets {
packagePlugin = true
}