forked from TAXIIProject/java-taxii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
197 lines (162 loc) · 7.36 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
/*
* Copyright (c) 2014, The MITRE Corporation. All rights reserved.
* See LICENSE for complete terms.
*
* Java-TAXII Gradle Buildscript
*
* Jasen Jacobsen ([email protected])
*
* Run
*
* gradle
*
* from the commnand-line.
*
* Jar will be built to
*
* build/libs/java-taxii-${version}.jar
*/
defaultTasks 'test'
apply plugin: 'java'
apply plugin: 'eclipse'
version = 1.1
String srcGeneratedDir = 'src/generated'
String srcGeneratedJavaDir = srcGeneratedDir + '/java'
String schemasDir = srcGeneratedDir + "/schemas"
sourceSets {
main {
java {
srcDirs('src/main/java', srcGeneratedJavaDir)
}
resources {
srcDirs = [schemasDir]
}
}
}
repositories {
mavenCentral()
flatDir {
dirs 'lib'
}
}
configurations {
xjc
}
dependencies {
xjc 'javax.activation:activation:1.1.1'
xjc 'com.sun.xml.bind:jaxb-impl:2.2.5-2'
xjc 'javax.xml:jsr173:1.0'
xjc 'stax:stax-api:1.0.1'
xjc 'javax.xml.bind:jaxb-api:2.2.+'
xjc 'com.sun.xml.bind:jaxb-xjc:2.2.5-2'
// use the JAXB2 Commons project to include some XJC plugins
xjc 'org.jvnet.jaxb2_commons:jaxb2-basics:0.6.5'
xjc 'org.jvnet.jaxb2_commons:jaxb2-basics-ant:0.6.5'
xjc 'org.jvnet.jaxb2_commons:jaxb2-fluent-api:3.0'
xjc 'org.jvnet.jaxb2_commons:jaxb2-value-constructor:3.0'
xjc 'org.jvnet.jaxb2_commons:jaxb2-default-value:1.1'
// This plugin adds 'javax.xml.bind.annotation.XmlNs' annotations to
// 'package-info.java' file according to specific definitions in
// bindings.xml file. Those annotations associate namespace prefixes
// with XML namespace URIs.
xjc 'org.jvnet.jaxb2_commons:jaxb2-namespace-prefix:1.1'
compile 'javax.xml.bind:jaxb-api:2.2.+'
compile 'org.jvnet.jaxb2_commons:jaxb2-basics-runtime:0.6.5'
compile 'net.sf.saxon:Saxon-HE:9.5.1-5'
compile 'org.apache.httpcomponents:httpclient:4.3.5'
compile 'org.apache.httpcomponents:httpclient-cache:4.3.5'
compile 'org.apache.httpcomponents:httpmime:4.3.5'
compile 'org.apache.httpcomponents:fluent-hc:4.3.5'
testCompile 'junit:junit:4.11'
}
task retrieveSchemas << {
if (project.fileTree(schemasDir).isEmpty()) {
// Get the schemas & patch them.
println "Retrieving TAXII schemas from reference sources."
ant.mkdir(dir:schemasDir)
/*
* TODO:
* As of this writing, the official schemas on the TAXII web site do not include the Schematron rules, so
* get the schemas from a local directory. Once the official schemas have been modified, the below should be
* pointed at the official schemas.
*
* NOTE: The patch files will ned to be updated once new versions are posted to the web site.
*/
// Get the TAXII 1.1 Schema.
def schemaSource = new File(project.rootDir.absolutePath + "/" + "schemas" + "/TAXII_XMLMessageBinding_Schema-1.1-with-sch.xsd")
// URL schemaSource = new URL("https://raw.githubusercontent.com/TAXIIProject/TAXII-Specifications/1.1/TAXII_XMLMessageBinding_Schema.xsd")
File outFile = new File(project.rootDir.absolutePath + "/" + schemasDir + "/TAXII_XMLMessageBinding-1.1.xsd")
outFile.write(schemaSource.getText())
// Get the TAXII 1.0 Schema.
schemaSource = new File(project.rootDir.absolutePath + "/" + "schemas" + "/TAXII_XMLMessageBinding_Schema-1.0-with-sch.xsd")
// taxiiUrl = new URL("https://raw.githubusercontent.com/TAXIIProject/TAXII-Specifications/1.0/TAXII_XMLMessageBinding_Schema.xsd")
outFile = new File(project.rootDir.absolutePath + "/" + schemasDir + "/TAXII_XMLMessageBinding-1.0.xsd")
outFile.write(schemaSource.getText())
// TODO: The following two schemas are already in a form we can pull from their web site.
// Get the DefaultQuery Schema.
schemaSource = new URL("https://raw.githubusercontent.com/TAXIIProject/TAXII-Specifications/1.1/TAXII_DefaultQuery_Schema.xsd")
outFile = new File(project.rootDir.absolutePath + "/" + schemasDir + "/TAXII_DefaultQuery.xsd")
outFile.write(schemaSource.getText())
// Get the XML Digital Signature Schema.
schemaSource = new URL("http://www.w3.org/TR/xmldsig-core/xmldsig-core-schema.xsd")
outFile = new File(project.rootDir.absolutePath + "/" + schemasDir + "/xmldsig-core-schema.xsd")
outFile.write(schemaSource.getText())
} else {
println "Schemas are present. Retrieval is not needed."
didWork = false
}
}
task patchSchemas << {
// This should only execute if retrieveSchemas did work.
if (retrieveSchemas.didWork) {
ant.patch(patchfile: "src/main/resources/xmldsig-core-schema.patch", originalfile: schemasDir + "/xmldsig-core-schema.xsd")
ant.patch(patchfile: "src/main/resources/TAXII_XMLMessageBinding_Schema-1.1.patch", originalfile: schemasDir + "/TAXII_XMLMessageBinding-1.1.xsd")
ant.patch(patchfile: "src/main/resources/TAXII_XMLMessageBinding_Schema-1.0.patch", originalfile: schemasDir + "/TAXII_XMLMessageBinding-1.0.xsd")
ant.patch(patchfile: "src/main/resources/TAXII_DefaultQuery.patch", originalfile: schemasDir + "/TAXII_DefaultQuery.xsd")
} else {
println "Schemas already exist and are presumed patched. Nothing done."
didWork = false
}
}
task extractSchematron << {
ant.xslt (destdir: srcGeneratedDir, extension: ".sch", basedir: schemasDir,
includes: "TAXII_XMLMessage*.xsd", classpath: configurations.compile.asPath,
style: 'src/main/resources/iso-schematron-xslt2/ExtractSchFromXSD-2.xsl')
}
task compileSchematron << {
ant.xslt (destdir: "src/generated/schemas", extension: "-compiled.xsl", basedir: srcGeneratedDir,
includes: "TAXII_XMLMessage*.sch", classpath: configurations.compile.asPath,
style: 'src/main/resources/iso-schematron-xslt2/iso_schematron_message_xslt2.xsl')
}
task generate << {
String bindingDir = 'src/main/resources'
ant.taskdef(name: 'xjc', classname: 'org.jvnet.jaxb2_commons.xjc.XJC2Task',
classpath: configurations.xjc.asPath)
ant.mkdir(dir: srcGeneratedJavaDir)
ant.xjc(destdir: srcGeneratedJavaDir, header: false, readonly: true,
extension: true, classpath: configurations.xjc.asPath) {
arg(line: '-Xequals -XhashCode -Xfluent-api -Xvalue-constructor -Xdefault-value -Xnamespace-prefix')
binding(dir: bindingDir, includes: '*.xjb')
schema(dir: schemasDir, includes: '*.xsd')
produces(dir: srcGeneratedJavaDir, includes: '**/*.java')
}
}
task cleanGenerated << {
ant.delete(dir: srcGeneratedDir)
}
javadoc {
options.overview = "src/main/java/overview.html"
}
task dist << {
ant.zip(destfile: "build/java-taxii.zip") {
fileset(dir: ".", includes: "README.txt, LICENSE.txt")
fileset(dir: "build/libs", includes: "java-taxii-${version}.jar")
}
}
// fix dependencies so that generate gets called before compileJava
patchSchemas.dependsOn retrieveSchemas
extractSchematron.dependsOn patchSchemas
compileSchematron.dependsOn extractSchematron
generate.dependsOn compileSchematron
compileJava.dependsOn generate
dist.dependsOn jar