-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
148 lines (126 loc) · 4.08 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
buildscript {
ext {
grailsVersion = project.grailsVersion
}
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencies {
classpath "org.grails:grails-gradle-plugin:$grailsVersion"
classpath "org.grails.plugins:hibernate4:5.0.0"
classpath "org.grails.plugins:views-gradle:1.0.1"
}
}
//jorge 2
plugins {
id "org.asciidoctor.convert" version "1.5.2"
}
version "0.1"
group "twitterpeople"
apply plugin:"eclipse"
apply plugin:"idea"
apply plugin:"org.grails.grails-web"
apply plugin:"org.grails.plugins.views-json"
ext {
grailsVersion = project.grailsVersion
gradleWrapperVersion = project.gradleWrapperVersion
// jorge 2
springRestdocsVersion = '1.1.0.RC1' //''1.1.0.M1'
snippetsDir = file('build/generated-snippets')
}
// jorge 2
test {
outputs.dir snippetsDir
}
// jorge 3
integrationTest{
outputs.upToDateWhen { false }
outputs.dir snippetsDir
systemProperty 'twitter4j.oauth.consumerKey',"${consumerKey}"
systemProperty 'twitter4j.oauth.consumerSecret',"${consumerSecret}"
systemProperty 'twitter4j.oauth.accessToken',"${accessToken}"
systemProperty 'twitter4j.oauth.accessTokenSecret',"${secretToken}"
}
// jorge 2
asciidoctor {
attributes 'snippets': snippetsDir,
'source-highlighter':'prettify',
'toc':'left',
'setanchors':'true'
inputs.dir snippetsDir
dependsOn integrationTest
}
repositories {
mavenLocal()
maven { url "https://repo.grails.org/grails/core" }
}
dependencyManagement {
imports {
mavenBom "org.grails:grails-bom:$grailsVersion"
}
applyMavenExclusions false
}
dependencies {
compile "org.springframework.boot:spring-boot-starter-logging"
compile "org.springframework.boot:spring-boot-autoconfigure"
compile "org.grails:grails-core"
compile "org.springframework.boot:spring-boot-starter-actuator"
compile "org.springframework.boot:spring-boot-starter-tomcat"
compile "org.grails:grails-plugin-url-mappings"
compile "org.grails:grails-plugin-rest"
compile "org.grails:grails-plugin-codecs"
compile "org.grails:grails-plugin-interceptors"
compile "org.grails:grails-plugin-services"
compile "org.grails:grails-plugin-datasource"
compile "org.grails:grails-plugin-databinding"
compile "org.grails:grails-plugin-async"
compile "org.grails:grails-web-boot"
compile "org.grails:grails-logging"
compile "org.grails.plugins:cache"
compile "org.grails.plugins:hibernate4"
compile "org.hibernate:hibernate-ehcache"
compile "org.grails.plugins:views-json"
console "org.grails:grails-console"
profile "org.grails.profiles:rest-api:3.1.1"
runtime "com.h2database:h2"
testCompile "org.grails:grails-plugin-testing"
testCompile "org.grails.plugins:geb"
testCompile "org.grails:grails-datastore-rest-client"
testRuntime "org.seleniumhq.selenium:selenium-htmlunit-driver:2.47.1"
testRuntime "net.sourceforge.htmlunit:htmlunit:2.18"
//jorge
compile "org.twitter4j:twitter4j-core:4.0.4"
// jorge 2
testCompile 'org.springframework.boot:spring-boot-starter-test'
testCompile "org.springframework.restdocs:spring-restdocs-core:$springRestdocsVersion"
testCompile "org.springframework.restdocs:spring-restdocs-restassured:$springRestdocsVersion"
}
task wrapper(type: Wrapper) {
gradleVersion = gradleWrapperVersion
}
//jorge
bootRun {
jvmArgs = [
"-Dtwitter4j.oauth.consumerKey=${consumerKey}",
"-Dtwitter4j.oauth.consumerSecret=${consumerSecret}",
"-Dtwitter4j.oauth.accessToken=${accessToken}",
"-Dtwitter4j.oauth.accessTokenSecret=${secretToken}"
]
}
// jorge 2
jar {
dependsOn asciidoctor
from ("${asciidoctor.outputDir}/html5") {
into 'static/docs'
}
}
assemble.doLast{
def twitter4j = new File('build/libs/twitter4j.properties')
twitter4j.text = """
oauth.consumerKey=${consumerKey}
oauth.consumerSecret=${consumerSecret}
oauth.accessToken=${accessToken}
oauth.accessTokenSecret=${secretToken}
"""
}