-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathbuild.gradle
94 lines (75 loc) · 2.62 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
89
90
91
92
93
94
buildscript {
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
classpath "org.grails.plugins:hibernate5:${gormVersion - ".RELEASE"}"
classpath 'org.asciidoctor:asciidoctor-gradle-plugin:1.5.3'
classpath 'org.ajoberstar:gradle-git:1.4.2'
}
}
plugins {
// id "io.spring.dependency-management" version "0.4.0.RELEASE"
id "com.jfrog.bintray" version "1.1"
}
version "2.1.1.BUILD-SNAPSHOT"
group "org.grails.plugins"
apply plugin: 'idea'
apply plugin: "org.grails.grails-plugin"
apply plugin: "org.grails.grails-plugin-publish"
apply plugin: "org.grails.grails-gsp"
sourceCompatibility = 1.7
targetCompatibility = 1.7
repositories {
mavenLocal()
mavenCentral()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
provided "org.springframework.boot:spring-boot-starter-logging"
provided "org.springframework.boot:spring-boot-autoconfigure"
provided "org.grails:grails-core"
provided "org.springframework.boot:spring-boot-starter-tomcat"
provided "org.grails:grails-web-boot"
provided "org.grails:grails-logging"
provided "org.grails:grails-plugin-databinding"
profile "org.grails.profiles:web-plugin"
provided "org.grails.plugins:cache"
provided "org.grails:grails-plugin-services"
provided "org.grails:grails-plugin-domain-class"
provided "org.grails.plugins:converters:3.3.1"
provided 'javax.servlet:javax.servlet-api:3.1.0'
provided "org.grails.plugins:hibernate5"
provided "org.hibernate:hibernate-core:5.1.5.Final"
compile 'joda-time:joda-time:2.9.9'
runtime "com.h2database:h2"
testCompile("org.grails:grails-web-databinding-spring:2.5.0")
testCompile('org.hamcrest:hamcrest-all:1.1')
testCompile('org.jodd:jodd-lagarto:3.4.1')
testCompile "org.grails:grails-gorm-testing-support"
testCompile "org.grails:grails-plugin-testing"
testCompile "org.grails:grails-web-testing-support"
console "org.grails:grails-console"
}
task wrapper(type: Wrapper) {
gradleVersion = gradleWrapperVersion
}
apply from: "gradle/documentation.gradle"
apply from: "gradle/publish.gradle"
grailsPublish {
userOrg = 'grails'
githubSlug = 'gpc/joda-time'
license {
name = 'Apache-2.0'
}
title = 'Joda-Time Plugin'
desc = 'Grails Joda-Time Plugin'
developers = [
robfletcher: 'Rob Fletcher',
graemerocher: 'Graeme Rocher',
puneetbehl : "Puneet Behl",
sbglasius : "Søren Berg Glasius"
]
}