-
Notifications
You must be signed in to change notification settings - Fork 27
/
build.gradle
102 lines (93 loc) · 2.91 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
/*
* Copyright (C) 2016-2024 HERE Europe B.V.
*
* Licensed 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.
*
* SPDX-License-Identifier: Apache-2.0
* License-Filename: LICENSE
*/
buildscript {
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
classpath libs.kotlin.gradle.plugin
classpath libs.build.info.extractor.gradle
classpath libs.spotless.plugin.gradle
modules {
module("org.jetbrains.trove4j:trove4j") {
replacedBy("org.jetbrains.intellij.deps:trove4j")
}
}
}
}
plugins {
alias libs.plugins.nebula.lint
}
allprojects {
repositories {
mavenCentral()
google()
}
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.requested.name == 'junit-dep') {
// Prefer more recent versions published under the new 'junit' artifact name instead of under the
// deprecated 'junit-dep' artifact name.
details.useTarget group: details.requested.group, name: 'junit', version: details.requested.version
}
}
}
apply plugin: 'java'
apply plugin: 'org.jetbrains.kotlin.jvm'
compileJava {
options.encoding = "UTF-8"
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
compileTestJava {
options.encoding = "UTF-8"
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
compileKotlin {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = JavaVersion.VERSION_11.toString()
}
}
javadoc {
options.tags = [
"generated:a:Generated",
"implNote:a:Implementation note",
"model:a:Model",
"ordered:a:Ordered" ]
}
test {
maxParallelForks = Runtime.runtime.availableProcessors().intdiv(2) ?: 1
}
apply plugin: 'nebula.lint'
gradleLint {
alwaysRun = false
rules = ['all-dependency']
reportFormat='text'
// not using 'unused-dependency' rule because we state some transitive dependencies explicitly
// for dependency locking
excludedRules = ['unused-dependency']
}
}