-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
216 lines (178 loc) · 7.39 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
buildscript {
repositories {
jcenter()
mavenLocal()
maven {
url {"https://dl.bintray.com/rjrudin/maven/"}
}
}
dependencies {
classpath "com.marklogic:ml-unit-test-client:${mlUnitTestVersion}"
classpath "com.marklogic:ml-gradle:${mlGradleVersion}"
}
}
apply plugin: "java"
apply plugin: "com.marklogic.ml-gradle"
repositories {
jcenter()
mavenLocal()
maven {
url {"https://dl.bintray.com/rjrudin/maven/"}
}
maven { url "https://developer.marklogic.com/maven2/" }
}
configurations {
mlcp
}
dependencies {
mlRestApi "com.marklogic:ml-unit-test-modules:${mlUnitTestVersion}"
// For running ml-unit-test tests via JUnit
testCompile "com.marklogic:ml-unit-test-client:${mlUnitTestVersion}"
testCompile "junit:junit:4+"
mlcp "com.marklogic:mlcp:9.0.4"
/**
* mlcp uses Log4j for logging, and if Log4j can't find a configuration file, it will complain and you'll
* get none of mlcp's usually-useful logging. It is recommended then that your Gradle configuration for
* mlcp include a directory or some other resource that provides a log4j.properties file.
*/
mlcp files("lib")
}
group 'com.marklogic.billFarber'
version '1.0-SNAPSHOT'
task importCompanyA(type: com.marklogic.gradle.task.MlcpTask) {
classpath = configurations.mlcp
command = "IMPORT"
database = mlAppConfig.contentDatabaseName
output_collections = "/company/A"
output_permissions = "rest-reader,read,rest-writer,update"
output_uri_replace = ".*ml-data,''"
/**
* New in ml-gradle 2.6.0 - set this to define a URI in your content database for mlcp's log output to be written to
* as a text document. This can also be a variable, Gradle property, etc.
*/
logOutputUri = "mlcp-log.txt"
/**
* The args array can be used for any MLCP parameters that are not supported by the MlcpBean class that MlcpTask
* delegates to. input_file_path is supported by MlcpTask; this is just included as an example of using the args
* array.
*/
args = ["-input_file_path", "src/main/ml-data/CompanyA"]
}
task importCompanyB(type: com.marklogic.gradle.task.MlcpTask) {
classpath = configurations.mlcp
command = "IMPORT"
database = mlAppConfig.contentDatabaseName
output_collections = "/company/B"
output_permissions = "rest-reader,read,rest-writer,update"
output_uri_replace = ".*ml-data,''"
/**
* New in ml-gradle 2.6.0 - set this to define a URI in your content database for mlcp's log output to be written to
* as a text document. This can also be a variable, Gradle property, etc.
*/
logOutputUri = "mlcp-log.txt"
/**
* The args array can be used for any MLCP parameters that are not supported by the MlcpBean class that MlcpTask
* delegates to. input_file_path is supported by MlcpTask; this is just included as an example of using the args
* array.
*/
args = ["-input_file_path", "src/main/ml-data/CompanyB"]
}
task importShakespeare(type: com.marklogic.gradle.task.MlcpTask) {
classpath = configurations.mlcp
command = "IMPORT"
database = mlAppConfig.contentDatabaseName
output_collections = "/shakespeare"
output_permissions = "rest-reader,read,rest-writer,update"
output_uri_replace = ".*ml-data,''"
/**
* New in ml-gradle 2.6.0 - set this to define a URI in your content database for mlcp's log output to be written to
* as a text document. This can also be a variable, Gradle property, etc.
*/
logOutputUri = "mlcp-log.txt"
/**
* The args array can be used for any MLCP parameters that are not supported by the MlcpBean class that MlcpTask
* delegates to. input_file_path is supported by MlcpTask; this is just included as an example of using the args
* array.
*/
args = ["-input_file_path", "src/main/ml-data/shaks200"]
}
task importEmail(type: com.marklogic.gradle.task.MlcpTask) {
classpath = configurations.mlcp
command = "IMPORT"
database = mlAppConfig.contentDatabaseName
output_collections = "/email"
output_permissions = "rest-reader,read,rest-writer,update"
output_uri_replace = ".*ml-data,''"
document_type = "text"
/**
* New in ml-gradle 2.6.0 - set this to define a URI in your content database for mlcp's log output to be written to
* as a text document. This can also be a variable, Gradle property, etc.
*/
logOutputUri = "mlcp-log.txt"
/**
* The args array can be used for any MLCP parameters that are not supported by the MlcpBean class that MlcpTask
* delegates to. input_file_path is supported by MlcpTask; this is just included as an example of using the args
* array.
*/
args = ["-input_file_path", "src/main/ml-data/email"]
}
task importOntology(type: com.marklogic.gradle.task.MlcpTask) {
classpath = configurations.mlcp
command = "IMPORT"
database = mlAppConfig.contentDatabaseName
output_collections = "/prov-o"
output_permissions = "rest-reader,read,rest-writer,update"
output_uri_replace = ".*ml-data,''"
// document_type = "rdf"
/**
* New in ml-gradle 2.6.0 - set this to define a URI in your content database for mlcp's log output to be written to
* as a text document. This can also be a variable, Gradle property, etc.
*/
logOutputUri = "mlcp-log.txt"
/**
* The args array can be used for any MLCP parameters that are not supported by the MlcpBean class that MlcpTask
* delegates to. input_file_path is supported by MlcpTask; this is just included as an example of using the args
* array.
*/
args = ["-input_file_path", "src/main/ml-data/ontology", "-input_file_type", "rdf"]
}
task importSampleData(dependsOn: [importCompanyA, importCompanyB, importShakespeare, importEmail]) {}
import com.marklogic.appdeployer.command.modules.LoadModulesCommand
task setSearchOptionsForRestServer(type: com.marklogic.gradle.task.MarkLogicTask) {
doLast {
def cmd = new LoadModulesCommand()
def context = getCommandContext()
context.getAppConfig().setRestPort(8137)
context.getAppConfig().setTestRestPort(null)
cmd.execute(context)
}
}
import com.marklogic.appdeployer.command.modules.DeleteTestModulesCommand
import org.gradle.api.tasks.TaskAction
import com.marklogic.appdeployer.AppDeployer
import com.marklogic.appdeployer.command.modules.LoadModulesCommand
import com.marklogic.appdeployer.impl.SimpleAppDeployer
import com.marklogic.gradle.task.MarkLogicTask
class LoadModulesTask extends MarkLogicTask {
@TaskAction
void loadModules() {
LoadModulesCommand command = null
DeleteTestModulesCommand deleteCommand = null
// Check for a LoadModulesCommand in the AppDeployer first, as that may have additional configuration that we
// don't want to have to duplicate on this task
AppDeployer d = getAppDeployer()
if (d instanceof SimpleAppDeployer) {
command = d.getCommand("LoadModulesCommand")
deleteCommand = d.getCommand("DeleteTestModulesCommand")
}
if (command == null) {
command = new LoadModulesCommand()
}
if (deleteCommand == null) {
deleteCommand = new DeleteTestModulesCommand()
}
command.execute(getCommandContext())
deleteCommand.execute(getCommandContext())
}
}
mlPostDeploy.dependsOn(mlSetTraceEvents)