-
Notifications
You must be signed in to change notification settings - Fork 22
/
build.gradle
257 lines (225 loc) · 8.35 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
//discovery v5
plugins {
id 'java-library'
id 'com.diffplug.spotless' version '6.25.0'
id 'com.github.ben-manes.versions' version '0.51.0'
id 'com.github.hierynomus.license' version '0.16.1'
id 'io.spring.dependency-management' version '1.1.5'
id 'net.ltgt.errorprone' version '4.0.1'
id 'org.ajoberstar.grgit' version '5.2.2'
}
rootProject.version = calculatePublishVersion()
def specificVersion = calculateVersion()
apply from: "${rootDir}/gradle/versions.gradle"
apply from: "${rootDir}/gradle/check-licenses.gradle"
defaultTasks 'build', 'checkLicenses'
sourceCompatibility = '11'
targetCompatibility = '11'
repositories {
mavenCentral()
maven { url "https://artifacts.consensys.net/public/maven/maven/" }
}
dependencies {
implementation 'io.vertx:vertx-core'
implementation 'io.tmio:tuweni-bytes'
implementation 'io.tmio:tuweni-crypto'
implementation 'io.tmio:tuweni-rlp'
implementation 'io.tmio:tuweni-units'
implementation 'org.bouncycastle:bcprov-jdk18on'
implementation 'com.google.guava:guava'
implementation 'io.projectreactor:reactor-core'
implementation 'io.netty:netty-all'
implementation 'org.apache.logging.log4j:log4j-api'
implementation 'org.apache.logging.log4j:log4j-core'
testImplementation 'org.assertj:assertj-core'
testImplementation 'org.junit.jupiter:junit-jupiter-api'
testImplementation 'org.junit.jupiter:junit-jupiter-params'
testImplementation 'org.mockito:mockito-core'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'
testRuntimeOnly 'org.apache.logging.log4j:log4j-slf4j-impl'
errorprone("com.google.errorprone:error_prone_core")
errorprone("tech.pegasys.tools.epchecks:errorprone-checks")
}
spotless {
java {
target fileTree('.') {
include '**/*.java'
exclude '**.gradle/**'
exclude '**/src/*/generated'
exclude '**/src/*/generated_tests'
exclude '**/build/**'
}
importOrder 'tech.pegasys', 'net.consensys', 'java', ''
trimTrailingWhitespace()
endWithNewline()
googleJavaFormat('1.17.0')
}
}
license {
header rootProject.file("gradle/java.license")
skipExistingHeaders true
mapping('java', 'SLASHSTAR_STYLE')
exclude 'Dockerfile'
exclude '*.go'
ext.year = Calendar.getInstance().get(Calendar.YEAR)
}
tasks.withType(JavaCompile) {
options.fork = true
options.incremental = true
options.compilerArgs += [
'-Xlint:unchecked',
'-Xlint:cast',
'-Xlint:rawtypes',
'-Xlint:overloads',
'-Xlint:divzero',
'-Xlint:finally',
'-Xlint:static',
'-Werror',
]
options.errorprone {
disableWarningsInGeneratedCode
// Our equals need to be symmetric, this checker doesn't respect that.
check('EqualsGetClass', net.ltgt.gradle.errorprone.CheckSeverity.OFF)
// We like to use futures with no return values.
check('FutureReturnValueIgnored', net.ltgt.gradle.errorprone.CheckSeverity.OFF)
// We use the JSR-305 annotations instead of the Google annotations.
check('ImmutableEnumChecker', net.ltgt.gradle.errorprone.CheckSeverity.OFF)
check('FieldCanBeFinal', net.ltgt.gradle.errorprone.CheckSeverity.OFF)
check('CanIgnoreReturnValueSuggester', net.ltgt.gradle.errorprone.CheckSeverity.OFF)
// We prefer to be more explicit in address selection especially in tests, so removing this check
check('AddressSelection', net.ltgt.gradle.errorprone.CheckSeverity.OFF)
// These are experimental checks that we want enabled.
check('MissingBraces', net.ltgt.gradle.errorprone.CheckSeverity.WARN)
check('InsecureCryptoUsage', net.ltgt.gradle.errorprone.CheckSeverity.WARN)
check('WildcardImport', net.ltgt.gradle.errorprone.CheckSeverity.WARN)
check('DeduplicateConstants', net.ltgt.gradle.errorprone.CheckSeverity.WARN)
check('RedundantOverride', net.ltgt.gradle.errorprone.CheckSeverity.WARN)
check('RedundantThrows', net.ltgt.gradle.errorprone.CheckSeverity.WARN)
check('UnnecessarilyFullyQualified', net.ltgt.gradle.errorprone.CheckSeverity.WARN)
check('InitializeInline', net.ltgt.gradle.errorprone.CheckSeverity.WARN)
check('ClassName', net.ltgt.gradle.errorprone.CheckSeverity.WARN)
check('InterfaceWithOnlyStatics', net.ltgt.gradle.errorprone.CheckSeverity.WARN)
check('PackageLocation', net.ltgt.gradle.errorprone.CheckSeverity.WARN)
// Force strict compliance with Java naming conventions.
check('JavaCase', net.ltgt.gradle.errorprone.CheckSeverity.WARN)
// These checks are imported from errorprone-checks dependency but not required.
check('MethodInputParametersMustBeFinal', net.ltgt.gradle.errorprone.CheckSeverity.OFF)
check('BannedMethod', net.ltgt.gradle.errorprone.CheckSeverity.OFF)
}
options.encoding = 'UTF-8'
jar {
archiveBaseName = project.name
manifest {
attributes(
'Specification-Title': project.name,
'Specification-Version': project.version,
'Implementation-Title': project.name,
'Implementation-Version': specificVersion
)
}
}
}
test {
jvmArgs = [
'-Xmx4g',
'-XX:-UseGCOverheadLimit',
]
useJUnitPlatform()
reports {
junitXml.required = true
}
}
javadoc {
options.addStringOption('Xdoclint:all', '-quiet')
options.addStringOption('Xwerror', '-html5')
options.encoding = 'UTF-8'
}
task sourcesJar(type: Jar, dependsOn: classes) {
archiveClassifier = 'sources'
from sourceSets.main.allSource
}
task runTestDiscovery(type:JavaExec) {
mainClass = 'org.ethereum.beacon.discovery.app.DiscoveryTestServer'
classpath = sourceSets.main.runtimeClasspath + sourceSets.test.runtimeClasspath
systemProperty "log4j.configurationFile", "log4j2-test-discovery.xml"
}
def cloudsmithUser = project.hasProperty('cloudsmithUser') ? project.property('cloudsmithUser') : System.getenv('CLOUDSMITH_USER')
def cloudsmithKey = project.hasProperty('cloudsmithApiKey') ? project.property('cloudsmithApiKey') : System.getenv('CLOUDSMITH_API_KEY')
apply plugin: 'maven-publish'
publishing {
repositories {
maven {
name = "cloudsmith"
url = "https://api-g.cloudsmith.io/maven/consensys/maven/"
credentials {
username = cloudsmithUser
password = cloudsmithKey
}
}
}
publications {
mavenJava(MavenPublication) {
groupId "tech.pegasys.discovery"
version project.version
from components.java
artifact sourcesJar
versionMapping {
usage('java-api') { fromResolutionOf('runtimeClasspath') }
usage('java-runtime') { fromResolutionResult() }
}
pom {
name = "${project.name}"
url = 'http://github.com/ConsenSys/discovery'
licenses {
license {
name = 'The Apache License, Version 2.0'
url = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
scm {
connection = 'scm:git:git://github.com/ConsenSys/discovery.git'
developerConnection = 'scm:git:ssh://github.com/ConsenSys/discovery.git'
url = 'https://github.com/ConsenSys/discovery'
}
}
}
}
}
// Calculate the version that this build would be published under (if it is published)
// If this exact commit is tagged, use the tag
// If this is on a release-* branch, use the most recent tag appended with +develop (e.g. 0.1.1-RC1+develop)
// Otherwise, use develop
def calculatePublishVersion() {
if (!grgit) {
return 'UNKNOWN'
}
def specificVersion = calculateVersion()
def isReleaseBranch = grgit.branch.current().name.startsWith('release-')
if (specificVersion.contains('+')) {
return isReleaseBranch ? "${specificVersion.substring(0, specificVersion.indexOf('+'))}+develop" : "develop"
}
return specificVersion
}
// Calculate the version that teku --version will report (among other places)
// If this exact commit is tagged, use the tag
// Otherwise use git describe --tags and replace the - after the tag with a +
def calculateVersion() {
if (!grgit) {
return 'UNKNOWN'
}
String version = grgit.describe(tags: true)
if (version == null) {
return "UNKNOWN+g${grgit.head().abbreviatedId}"
}
def versionPattern = ~/^(?<lastVersion>.*)-(?<devVersion>[0-9]+-g[a-z0-9]+)$/
def matcher = version =~ versionPattern
if (matcher.find()) {
return "${matcher.group("lastVersion")}+${matcher.group("devVersion")}"
}
return version
}
task printVersion() {
doFirst {
print "Specific version: ${specificVersion} Publish version: ${project.version}"
}
}