-
Notifications
You must be signed in to change notification settings - Fork 143
Expand file tree
/
Copy pathbuild.gradle
More file actions
224 lines (189 loc) · 7.05 KB
/
build.gradle
File metadata and controls
224 lines (189 loc) · 7.05 KB
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
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import com.github.spotbugs.snom.SpotBugsTask
//This need for resolving plugins in buildscripts
plugins {
id('idea')
alias(libs.plugins.ideaext)
alias(libs.plugins.javacc) apply false
alias(libs.plugins.aggregateJavadoc)
alias(libs.plugins.spotbugs) apply false
alias(libs.plugins.jmh) apply false
alias(libs.plugins.jmhReport) apply false
alias(libs.plugins.dockerRemoteApi) apply false
}
apply from: "$rootDir/buildscripts/javadoc.gradle"
repositories {
mavenCentral()
}
ext {
repos = [
'apache-release' : "https://repo.maven.apache.org/maven2/",
'apache-snapshot': "https://repository.apache.org/snapshots",
'apache-staging' : 'https://repository.apache.org/service/local/staging/deploy/maven2'
]
addOpens = [
"--add-opens=java.base/java.lang=ALL-UNNAMED",
"--add-opens=java.base/java.lang.invoke=ALL-UNNAMED",
"--add-opens=java.base/java.lang.reflect=ALL-UNNAMED",
"--add-opens=java.base/java.io=ALL-UNNAMED",
"--add-opens=java.base/java.nio=ALL-UNNAMED",
"--add-opens=java.base/java.math=ALL-UNNAMED",
"--add-opens=java.base/java.util=ALL-UNNAMED",
"--add-opens=java.base/java.time=ALL-UNNAMED",
"--add-opens=java.base/jdk.internal.misc=ALL-UNNAMED",
"--add-opens=java.base/jdk.internal.access=ALL-UNNAMED",
"--add-opens=java.base/sun.nio.ch=ALL-UNNAMED",
"--add-opens=java.base/sun.security.x509=ALL-UNNAMED",
]
defaultJvmArgs = addOpens + [
"-Dio.netty.tryReflectionSetAccessible=true",
"-XX:+HeapDumpOnOutOfMemoryError",
"-XX:+PerfDisableSharedMem",
"-ea",
"-Xmx1g"
]
compilerArgs = [
"--add-exports=java.base/sun.nio.ch=ALL-UNNAMED",
"--add-exports=java.base/jdk.internal.misc=ALL-UNNAMED"
]
product = "Apache Ignite"
projectVersion = project.hasProperty('projectVersion') ? project.property('projectVersion') : '3.0.0-SNAPSHOT'
def versionPattern = '\\d+\\.\\d+\\.\\d+(?:\\.(\\d+))?(?:-[0-9A-Za-z]+)?'
if (!projectVersion.matches(versionPattern)) {
throw new GradleException("Project version $projectVersion doesn't conform to the semver format")
}
}
def trimQuotes(String input) {
if (input.startsWith("\"") && input.endsWith("\"") && input.length() > 2) {
return input.substring(1, input.length() - 1);
}
return input;
}
allprojects {
group 'org.apache.ignite'
version = projectVersion
tasks.withType(Jar).configureEach {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}
tasks.withType(Test).configureEach {
defaultCharacterEncoding = 'UTF-8'
def extraJvmArgs = []
if (project.hasProperty('extraJvmArgs')) {
def prop = project.property('extraJvmArgs').toString().trim()
extraJvmArgs = trimQuotes(prop)
.split(/\s+/) // Split on whitespace
.toList()
}
jvmArgs += defaultJvmArgs + extraJvmArgs
systemProperty 'jraft.available_processors', 1
if (project.hasProperty('excludeTest')) {
exclude project.property('excludeTest')
}
def dockerVersion = findProperty("migration-tools.docker.version")
systemProperty "migration-tools.docker.version", dockerVersion != null ? dockerVersion : project.version
[
"tests.containers.support",
"e2e.testLimiter",
"ai2.sampleCluster.Xmx",
"ai2.sampleCluster.checkpointChecker.maxwaitseconds",
"ai2.sampleCluster.checkpointChecker.pollingseconds",
"ai2.sampleCluster.recreate.seeding.maxwaitseconds",
"ai2.sampleCluster.recreate.seeding.pollingseconds",
"seeddata.nCachesPerStint",
].forEach {
def v = findProperty(it)
if (v != null) {
systemProperty it, v
}
}
}
tasks.withType(Sign).configureEach {
enabled = project.hasProperty('signing.keyId')
&& project.hasProperty('signing.password')
&& project.hasProperty('signing.secretKeyRingFile')
}
tasks.withType(Javadoc).configureEach {
options.tags = ["apiNote"]
options.addStringOption('bottom', javadocFooter())
}
tasks.withType(JavaCompile).configureEach {
options.encoding = 'UTF-8'
options.compilerArgs += compilerArgs
}
//Temporary hack to disable caching of Test tasks.
//https://github.com/gradle/gradle/issues/9210
tasks.withType(Test).configureEach {
outputs.upToDateWhen { false }
}
configurations.configureEach {
resolutionStrategy {
force libs.protobuf.java
}
}
}
subprojects {
apply plugin: 'base'
repositories {
maven {
url = uri('https://repo.maven.apache.org/maven2/')
mavenContent {
releasesOnly()
}
}
maven {
url = uri(' https://repository.apache.org/service/local/staging/deploy/maven2')
mavenContent {
releasesOnly()
}
}
maven {
url = uri('https://jitpack.io')
}
mavenLocal()
}
tasks.register('printSubDependencies', DependencyReportTask)
tasks.register('spotbugs') {
dependsOn tasks.withType(SpotBugsTask)
group "Verification"
description 'Run all SpotBugs checks on the project'
}
tasks.register('pmd') {
dependsOn tasks.withType(Pmd)
group "Verification"
description 'Run all PMD checks on the project'
}
tasks.register('checkstyle') {
dependsOn tasks.withType(Checkstyle)
group "Verification"
description 'Run all Checkstyle checks on the project'
}
}
idea.project.settings {
compiler.javac {
// Workaround on https://youtrack.jetbrains.com/issue/IDEA-154038.
javacAdditionalOptions = compilerArgs.join(' ')
}
runConfigurations {
defaults(org.jetbrains.gradle.ext.JUnit) {
vmParameters = defaultJvmArgs.join(' ')
}
defaults(org.jetbrains.gradle.ext.Application) {
jvmArgs = defaultJvmArgs.join(' ')
}
}
}