forked from opencaesar/metrology-vocabularies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
419 lines (375 loc) · 14.7 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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
/*
* The Gradle task dependencies
*/
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
// https://github.com/opencaesar/owl-adapter/tags
classpath 'io.opencaesar.adapters:oml2owl-gradle:1.0.+'
// https://github.com/opencaesar/oml-tools/tags
classpath 'io.opencaesar.oml:oml-merge-gradle:1.1.+'
classpath 'io.opencaesar.oml:oml-bikeshed-gradle:1.0.+'
// https://github.com/opencaesar/owl-tools/tags
classpath 'io.opencaesar.owl:owl-load-gradle:+'
classpath 'io.opencaesar.owl:owl-reason-gradle:+'
classpath 'io.opencaesar.owl:owl-fuseki:+'
classpath 'io.opencaesar.owl:owl-fuseki-gradle:+'
classpath 'io.opencaesar.owl:owl-query-gradle:+'
}
}
plugins {
id 'com.palantir.git-version' version '0.12.3'
}
/*
* Dataset maven coordinates
*/
ext.title = 'Metrology Vocabularies'
description ='Metrology vocabularies from bipm.org, iso/iec iso-80000, and supporting ISO-704, ISO-1087 terminological analysis'
group = 'io.opencaesar.ontologies'
version = gitVersion()
/*
* The repositories to look up OML dependencies in
*/
repositories {
mavenLocal()
mavenCentral()
// Until this PR is merged: https://github.com/opencaesar/core-vocabularies/pull/29
maven { url 'https://jitpack.io' }
}
/*
* The configuration of OML dependencies
*/
configurations {
oml
}
/*
* The OML dependencies
*/
dependencies {
// Until this PR is merged: https://github.com/opencaesar/core-vocabularies/pull/29
// oml "io.opencaesar.ontologies:core-vocabularies:$coreVersion"
oml "com.github.NicolasRouquette:core-vocabularies:$coreVersion"
}
apply from: "${rootDir}/gradle/maven-deployment.gradle"
/*
* A task to extract and merge the OML dependencies
*/
task downloadDependencies(type:io.opencaesar.oml.merge.OmlMergeTask, group:"oml") {
inputZipPaths = configurations.oml.files
outputCatalogFolder = file('build/oml')
}
/*
* A task to generate Bikeshed specification for the OML catalog
*/
task copyDiagrams(type: Copy) {
from 'diagrams'
into 'build/bikeshed/diagrams'
}
task omlToBikeshed(type: io.opencaesar.oml.bikeshed.Oml2BikeshedTask, group:"oml", dependsOn: [downloadDependencies, copyDiagrams]) {
// OML catalog
inputCatalogPath = file('catalog.xml')
// OML catalog title
inputCatalogTitle = project.title
// OML catalog version
inputCatalogVersion = project.version
// OWL folder
outputFolderPath = file('build/bikeshed')
// Publish URL
publishUrl = "$dataset_publishUrl".toString()
}
/*
* A task to generate the model documentation in HTML
*/
import org.gradle.internal.os.OperatingSystem
task generateDocs(dependsOn: omlToBikeshed, group:"oml") {
doLast {
if (OperatingSystem.current().isWindows()) {
exec {
if (project.hasProperty('BIKESHED')) {
environment 'PATH', "${environment.PATH}:${BIKESHED}"
}
commandLine 'build/bikeshed/publish.bat'
}
} else {
exec {
commandLine 'chmod', '+x', 'build/bikeshed/publish.sh'
}
exec {
if (project.hasProperty('BIKESHED')) {
environment 'PATH', "${environment.PATH}:${BIKESHED}"
}
commandLine 'build/bikeshed/publish.sh'
}
}
}
}
/*
* A task to convert the OML catalog to OWL catalog
* downloadDependencies is excluded because it does not behave incrementally.
*/
task omlToOwlRdf(type:io.opencaesar.oml2owl.Oml2OwlTask, group:"oml", dependsOn: downloadDependencies) {
// OML catalog
inputCatalogPath = file('catalog.xml')
// OWL catalog
outputCatalogPath = file('build/owl/catalog.xml')
outputFileExtension = 'owl'
}
task owlReasonIso80000Rdf(type:io.opencaesar.owl.reason.OwlReasonTask, dependsOn: omlToOwlRdf) {
// OWL catalog
catalogPath = file('build/owl/catalog.xml')
// Input ontology IRI to reason on
inputOntologyIri = 'http://iso.org/iso-80000-bundle'
inputFileExtensions = ['owl']
outputFileExtension = 'owl'
// Entailment statements to generate and the ontologies to persist them in
specs = [
'http://iso.org/iso-80000-bundle/classes = ALL_SUBCLASS',
'http://iso.org/iso-80000-bundle/properties = INVERSE_PROPERTY | ALL_SUBPROPERTY',
'http://iso.org/iso-80000-bundle/individuals = ALL_INSTANCE | DATA_PROPERTY_VALUE | OBJECT_PROPERTY_VALUE | SAME_AS'
]
// Junit error report
reportPath = file('build/reports/owl/iso-80000-bundle/reasoning.xml')
}
task owlReasonVIM4Rdf(type:io.opencaesar.owl.reason.OwlReasonTask, dependsOn: omlToOwlRdf) {
// OWL catalog
catalogPath = file('build/owl/catalog.xml')
// Input ontology IRI to reason on
inputOntologyIri = 'http://bipm.org/jcgm/jcgm-bundle'
inputFileExtensions = ['owl']
outputFileExtension = 'owl'
// Entailment statements to generate and the ontologies to persist them in
specs = [
'http://bipm.org/jcgm/jcgm-bundle/classes = ALL_SUBCLASS',
'http://bipm.org/jcgm/jcgm-bundle/properties = INVERSE_PROPERTY | ALL_SUBPROPERTY',
'http://bipm.org/jcgm/jcgm-bundle/individuals = ALL_INSTANCE | DATA_PROPERTY_VALUE | OBJECT_PROPERTY_VALUE | SAME_AS'
]
// Junit error report
reportPath = file('build/reports/owl/jcgm-bundle/reasoning.xml')
}
/*
* downloadDependencies is excluded because it does not behave incrementally.
*/
task omlToOwlTrig(type:io.opencaesar.oml2owl.Oml2OwlTask, dependsOn: downloadDependencies) {
// OML catalog
inputCatalogPath = file('catalog.xml')
// OWL catalog
outputCatalogPath = file('build/trig/catalog.xml')
outputFileExtension = 'trig'
}
task owlReasonIso80000Trig(type:io.opencaesar.owl.reason.OwlReasonTask, dependsOn: omlToOwlTrig) {
// OWL catalog
catalogPath = file('build/trig/catalog.xml')
// Input ontology IRI to reason on
inputOntologyIri = 'http://iso.org/iso-80000-bundle'
inputFileExtensions = ['trig']
outputFileExtension = 'trig'
// Entailment statements to generate and the ontologies to persist them in
specs = [
'http://iso.org/iso-80000-bundle/classes = ALL_SUBCLASS',
'http://iso.org/iso-80000-bundle/properties = INVERSE_PROPERTY | ALL_SUBPROPERTY',
'http://iso.org/iso-80000-bundle/individuals = ALL_INSTANCE | DATA_PROPERTY_VALUE | OBJECT_PROPERTY_VALUE | SAME_AS'
]
// Junit error report
reportPath = file('build/reports/trig/iso-80000-bundle/reasoning.xml')
}
task owlReasonVIM4Trig(type:io.opencaesar.owl.reason.OwlReasonTask, dependsOn: omlToOwlTrig) {
// OWL catalog
catalogPath = file('build/trig/catalog.xml')
// Input ontology IRI to reason on
inputOntologyIri = 'http://bipm.org/jcgm/jcgm-bundle'
inputFileExtensions = ['trig']
outputFileExtension = 'trig'
// Entailment statements to generate and the ontologies to persist them in
specs = [
'http://bipm.org/jcgm/jcgm-bundle/classes = ALL_SUBCLASS',
'http://bipm.org/jcgm/jcgm-bundle/properties = INVERSE_PROPERTY | ALL_SUBPROPERTY',
'http://bipm.org/jcgm/jcgm-bundle/individuals = ALL_INSTANCE | DATA_PROPERTY_VALUE | OBJECT_PROPERTY_VALUE | SAME_AS'
]
// Junit error report
reportPath = file('build/reports/trig/jcgm-bundle/reasoning.xml')
}
task owlReasonSimpleVocabularyTrig(type:io.opencaesar.owl.reason.OwlReasonTask, dependsOn: omlToOwlTrig) {
// OWL catalog
catalogPath = file('build/trig/catalog.xml')
// Input ontology IRI to reason on
inputOntologyIri = 'http://example.org/simple-vocabulary-bundle'
inputFileExtensions = ['trig']
outputFileExtension = 'trig'
// Entailment statements to generate and the ontologies to persist them in
specs = [
'http://example.org/simple-vocabulary-bundle/classes = ALL_SUBCLASS',
'http://example.org/simple-vocabulary-bundle/properties = INVERSE_PROPERTY | ALL_SUBPROPERTY',
'http://example.org/simple-vocabulary-bundle/individuals = ALL_INSTANCE | DATA_PROPERTY_VALUE | OBJECT_PROPERTY_VALUE | SAME_AS'
]
// Junit error report
reportPath = file('build/reports/trig/simple-vocabulary-bundle/reasoning.xml')
}
task owlReasonSimpleDescriptionTrig(type:io.opencaesar.owl.reason.OwlReasonTask, dependsOn: omlToOwlTrig) {
// OWL catalog
catalogPath = file('build/trig/catalog.xml')
// Input ontology IRI to reason on
inputOntologyIri = 'http://example.org/simple-description-bundle'
inputFileExtensions = ['trig']
outputFileExtension = 'trig'
// Entailment statements to generate and the ontologies to persist them in
specs = [
'http://example.org/simple-description-bundle/classes = ALL_SUBCLASS',
'http://example.org/simple-description-bundle/properties = INVERSE_PROPERTY | ALL_SUBPROPERTY',
'http://example.org/simple-description-bundle/individuals = ALL_INSTANCE | DATA_PROPERTY_VALUE | OBJECT_PROPERTY_VALUE | SAME_AS'
]
// Junit error report
reportPath = file('build/reports/trig/simple-description-bundle/reasoning.xml')
}
task owlReasonCompleteVocabularyTrig(type:io.opencaesar.owl.reason.OwlReasonTask, dependsOn: omlToOwlTrig) {
// OWL catalog
catalogPath = file('build/trig/catalog.xml')
// Input ontology IRI to reason on
inputOntologyIri = 'http://example.org/complete-vocabulary-bundle'
inputFileExtensions = ['trig']
outputFileExtension = 'trig'
// Entailment statements to generate and the ontologies to persist them in
specs = [
'http://example.org/complete-vocabulary-bundle/classes = ALL_SUBCLASS',
'http://example.org/complete-vocabulary-bundle/properties = INVERSE_PROPERTY | ALL_SUBPROPERTY',
'http://example.org/complete-vocabulary-bundle/individuals = ALL_INSTANCE | DATA_PROPERTY_VALUE | OBJECT_PROPERTY_VALUE | SAME_AS'
]
// Junit error report
reportPath = file('build/reports/trig/complete-vocabulary-bundle/reasoning.xml')
}
task owlReasonCompleteDescriptionRdf(type:io.opencaesar.owl.reason.OwlReasonTask, dependsOn: omlToOwlRdf) {
// OWL catalog
catalogPath = file('build/owl/catalog.xml')
// Input ontology IRI to reason on
inputOntologyIri = 'http://example.org/complete-description-bundle'
inputFileExtensions = ['owl']
outputFileExtension = 'owl'
// Entailment statements to generate and the ontologies to persist them in
specs = [
'http://example.org/complete-description-bundle/classes = ALL_SUBCLASS',
'http://example.org/complete-description-bundle/properties = INVERSE_PROPERTY | ALL_SUBPROPERTY',
'http://example.org/complete-description-bundle/individuals = ALL_INSTANCE | DATA_PROPERTY_VALUE | OBJECT_PROPERTY_VALUE | SAME_AS'
]
// Junit error report
reportPath = file('build/reports/owl/complete-description-bundle/reasoning.xml')
}
task owlReasonCompleteDescriptionTrig(type:io.opencaesar.owl.reason.OwlReasonTask, dependsOn: omlToOwlTrig) {
// OWL catalog
catalogPath = file('build/trig/catalog.xml')
// Input ontology IRI to reason on
inputOntologyIri = 'http://example.org/complete-description-bundle'
inputFileExtensions = ['trig']
outputFileExtension = 'trig'
// Entailment statements to generate and the ontologies to persist them in
specs = [
'http://example.org/complete-description-bundle/classes = ALL_SUBCLASS',
'http://example.org/complete-description-bundle/properties = INVERSE_PROPERTY | ALL_SUBPROPERTY',
'http://example.org/complete-description-bundle/individuals = ALL_INSTANCE | DATA_PROPERTY_VALUE | OBJECT_PROPERTY_VALUE | SAME_AS'
]
// Junit error report
reportPath = file('build/reports/trig/complete-description-bundle/reasoning.xml')
}
/*
* Start the headless Fuseki server
*/
task startFuseki(type: io.opencaesar.owl.fuseki.StartFusekiTask, group:"oml") {
configurationPath = file('.fuseki.ttl')
outputFolderPath = file('.fuseki')
webUI = true
}
/*
* Stop the headless Fuseki server
*/
task stopFuseki(type: io.opencaesar.owl.fuseki.StopFusekiTask, group:"oml") {
outputFolderPath = file('.fuseki')
}
/*
* A task to load the iso80000 dataset to a Fuseki dataset endpoint
*/
task owlLoadCompleteDescriptionRdf(type:io.opencaesar.owl.load.OwlLoadTask, group:"oml", dependsOn: owlReasonCompleteDescriptionRdf) {
inferredTaskDependency = startFuseki
catalogPath = file('build/owl/catalog.xml')
endpointURL = "http://localhost:3030/$dataset_name".toString()
fileExtensions = ['owl']
iris = [
'http://example.org/complete-description-bundle/classes',
'http://example.org/complete-description-bundle/properties',
'http://example.org/complete-description-bundle/individuals',
]
}
task owlLoadCompleteDescriptionTrig(type:io.opencaesar.owl.load.OwlLoadTask, group:"oml", dependsOn: [startFuseki, owlReasonCompleteDescriptionTrig]) {
inferredTaskDependency = startFuseki
catalogPath = file('build/trig/catalog.xml')
endpointURL = "http://localhost:3030/$dataset_name".toString()
fileExtensions = ['trig']
iris = [
'http://example.org/complete-description-bundle/classes',
'http://example.org/complete-description-bundle/properties',
'http://example.org/complete-description-bundle/individuals',
]
}
/*
* A task to run a set of SPARQL queries on a Fuseki dataset endpoint
*/
task owlQuery(type:io.opencaesar.owl.query.OwlQueryTask, group:"oml", dependsOn: owlLoadCompleteDescriptionTrig) {
endpointURL = "http://localhost:3030/$dataset_name".toString()
queryPath = file('src/sparql')
resultPath = file('build/frames')
}
/*
* A task to build the project, which executes several tasks together
*/
tasks.named('build') {
group "oml"
dependsOn owlReasonIso80000Rdf
dependsOn owlReasonVIM4Rdf
dependsOn owlReasonIso80000Trig
dependsOn owlReasonVIM4Trig
dependsOn owlReasonSimpleVocabularyTrig
dependsOn owlReasonSimpleDescriptionTrig
dependsOn owlReasonCompleteVocabularyTrig
dependsOn owlReasonCompleteDescriptionTrig
}
/*
* A task to delete the build artifacts
*/
tasks.named('clean') {
group "oml"
}
/*
* Publish artifact to maven
*/
task omlZip(type: Zip, group:"oml") {
from file('src/oml')
include "**/*.oml"
destinationDirectory = file('build/libs')
archiveBaseName = project.name
archiveVersion = project.version
}
task omlZipRdf(type: Zip, group:"oml", dependsOn: [owlReasonIso80000Rdf, owlReasonVIM4Rdf]) {
from file('build/rdf')
include "**/*.rdf"
destinationDirectory = file('build/libs')
archiveBaseName = project.name
archiveVersion = project.version
archiveExtension = 'rdf.zip'
}
publishing.publications.maven.artifact omlZipRdf
task omlZipTrig(type: Zip, group:"oml", dependsOn: [owlReasonIso80000Trig, owlReasonVIM4Trig]) {
from file('build/trig')
include "**/*.trig"
destinationDirectory = file('build/libs')
archiveBaseName = project.name
archiveVersion = project.version
archiveExtension = 'trig.zip'
}
publishing.publications.maven.artifact omlZipTrig
/*
* Integration with the Eclipse IDE
*/
apply plugin: 'eclipse'
eclipse {
synchronizationTasks downloadDependencies
}