-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathbuild.gradle
36 lines (29 loc) · 870 Bytes
/
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
//
// Deploy:
// $ export BINTRAY_USER=...
// $ export BINTRAY_KEY=...
// $ gradle bintrayUpload
//
buildscript {
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.3'
}
}
plugins {
id "io.spring.dependency-management" version "0.5.4.RELEASE"
id "com.jfrog.bintray" version "1.2"
}
apply from: 'gradle/plugin.gradle'
version "0.19.2"
group "org.grails.plugins"
dependencies {
compile 'org.springframework.security:spring-security-core:4.0.3.RELEASE'
compile 'org.springframework.security:spring-security-web:4.0.3.RELEASE'
compile 'org.grails.plugins:spring-security-core:3.0.3'
provided 'javax.servlet:javax.servlet-api:3.1.0'
}