forked from bcgit/bc-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
267 lines (204 loc) · 6.5 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
plugins {
id "biz.aQute.bnd.builder" version "7.0.0"
}
jar.archiveBaseName = "bctls-$vmrange"
sourceSets {
main {
java {
srcDirs = ['src/main/java', 'src/main/jdk1.5']
}
}
java9 {
java {
srcDirs = ['src/main/jdk1.9']
}
}
test11 {
java {
compileClasspath += main.output + test.output
runtimeClasspath += test.output
srcDir(files("src/test/jdk1.11", "src/test/java"))
}
}
test17 {
java {
compileClasspath += main.output + test.output
runtimeClasspath += test.output
srcDir(files("src/test/jdk1.11","src/test/jdk1.15", "src/test/java"))
}
}
test21 {
java {
compileClasspath += main.output + test.output
runtimeClasspath += test.output
srcDir(files("src/test/jdk1.11","src/test/jdk1.15","src/test/jdk21", "src/test/java"))
}
}
}
dependencies {
implementation project(':core')
implementation project(':prov')
implementation project(':util')
implementation project(':pkix')
java9Implementation project(':core')
java9Implementation project(':prov')
java9Implementation project(':util')
java9Implementation project(':pkix')
java9Implementation files(sourceSets.main.output.classesDirs) {
builtBy compileJava
}
test11Implementation group: 'junit', name: 'junit', version: '4.13.2'
test17Implementation group: 'junit', name: 'junit', version: '4.13.2'
test21Implementation group: 'junit', name: 'junit', version: '4.13.2'
test11Implementation project(':core')
test11Implementation project(':prov')
test11Implementation project(':util')
test11Implementation project(':pkix')
test17Implementation project(':core')
test17Implementation project(':prov')
test17Implementation project(':util')
test17Implementation project(':pkix')
test21Implementation project(':core')
test21Implementation project(':prov')
test21Implementation project(':util')
test21Implementation project(':pkix')
}
compileJava {
javaCompiler = javaToolchains.compilerFor {
languageVersion = JavaLanguageVersion.of(17)
}
targetCompatibility = 1.8;
sourceCompatibility = 1.8;
}
compileJava9Java {
javaCompiler = javaToolchains.compilerFor {
languageVersion = JavaLanguageVersion.of(17)
}
sourceCompatibility = 9
targetCompatibility = 9
options.compilerArgs += [
'--module-path', "${bc_prov}:${bc_util}:${bc_pkix}"
]
options.sourcepath = files(['src/main/java', 'src/main/jdk1.9'])
}
compileTest11Java {
javaCompiler = javaToolchains.compilerFor {
languageVersion = JavaLanguageVersion.of(17)
}
sourceCompatibility = 11
targetCompatibility = 11
options.sourcepath = files(['src/test/java', 'src/test/jdk1.11'])
}
compileTest17Java {
javaCompiler = javaToolchains.compilerFor {
languageVersion = JavaLanguageVersion.of(17)
}
sourceCompatibility = 17
targetCompatibility = 17
options.sourcepath = files(['src/test/java', 'src/test/jdk1.15'])
}
compileTest21Java {
javaCompiler = javaToolchains.compilerFor {
languageVersion = JavaLanguageVersion.of(21)
}
sourceCompatibility = 21
targetCompatibility = 21
options.sourcepath = files(['src/test/java', 'src/test/jdk21'])
}
task sourcesJar(type: Jar) {
archiveBaseName = jar.archiveBaseName
archiveClassifier = 'sources'
from sourceSets.main.allSource
exclude("**/*.so")
into('META-INF/versions/9') {
from sourceSets.java9.allSource
}
}
jar {
from sourceSets.main.output
into('META-INF/versions/9') {
from sourceSets.java9.output
}
manifest.attributes('Multi-Release': 'true')
manifest.attributes('Bundle-RequiredExecutionEnvironment': 'JavaSE-1.8')
manifest.attributes('Export-Package': 'org.bouncycastle.*')
manifest.attributes('Import-Package': 'java.*;resolution:=optional;javax.*;resolution:=optional')
}
task javadocJar(type: Jar, dependsOn: javadoc) {
archiveBaseName = jar.archiveBaseName
archiveClassifier = 'javadoc'
from javadoc.destinationDir
}
artifacts {
archives jar
archives javadocJar
archives sourcesJar
}
test {
jvmArgs = ['-Dtest.java.version.prefix=1.8']
}
task test11(type: Test) {
dependsOn(jar)
testClassesDirs = sourceSets.test11.output.classesDirs
classpath = sourceSets.test11.runtimeClasspath + files(jar.archiveFile)
forkEvery = 1;
maxParallelForks = 8;
systemProperty 'bc.test.data.home', bcTestDataHome
maxHeapSize = "1536m"
testLogging.showStandardStreams = true
javaLauncher = javaToolchains.launcherFor {
languageVersion = JavaLanguageVersion.of(11)
}
jvmArgs = ['-Dtest.java.version.prefix=11.']
finalizedBy jacocoTestReport
filter {
includeTestsMatching "AllTest*"
if (project.hasProperty('excludeTests')) {
excludeTestsMatching "${excludeTests}"
}
}
}
task test17(type: Test) {
// This is testing the 1.15 code base
dependsOn jar
testClassesDirs = sourceSets.test17.output.classesDirs
classpath = sourceSets.test17.runtimeClasspath + files(jar.archiveFile)
forkEvery = 1;
maxParallelForks = 8;
systemProperty 'bc.test.data.home', bcTestDataHome
maxHeapSize = "1536m"
testLogging.showStandardStreams = true
javaLauncher = javaToolchains.launcherFor {
languageVersion = JavaLanguageVersion.of(17)
}
jvmArgs = ['-Dtest.java.version.prefix=17.']
finalizedBy jacocoTestReport
filter {
includeTestsMatching "AllTest*"
if (project.hasProperty('excludeTests')) {
excludeTestsMatching "${excludeTests}"
}
}
}
task test21(type: Test) {
// This is testing the 21 code base
dependsOn jar
testClassesDirs = sourceSets.test21.output.classesDirs
classpath = sourceSets.test21.runtimeClasspath + files(jar.archiveFile)
forkEvery = 1;
maxParallelForks = 8;
systemProperty 'bc.test.data.home', bcTestDataHome
maxHeapSize = "1536m"
testLogging.showStandardStreams = true
javaLauncher = javaToolchains.launcherFor {
languageVersion = JavaLanguageVersion.of(21)
}
jvmArgs = ['-Dtest.java.version.prefix=21']
finalizedBy jacocoTestReport
filter {
includeTestsMatching "AllTest*"
if (project.hasProperty('excludeTests')) {
excludeTestsMatching "${excludeTests}"
}
}
}