-
Notifications
You must be signed in to change notification settings - Fork 134
/
build.gradle
75 lines (65 loc) · 2.75 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
buildscript {
repositories {
mavenCentral() { metadataSources { mavenPom(); ignoreGradleMetadataRedirection() } }
gradlePluginPortal() { metadataSources { mavenPom(); ignoreGradleMetadataRedirection() } }
}
dependencies {
classpath 'com.palantir.jakartapackagealignment:jakarta-package-alignment:0.6.0'
classpath 'com.palantir.gradle.jdks:gradle-jdks:0.56.0'
classpath 'com.palantir.gradle.jdkslatest:gradle-jdks-latest:0.16.0'
classpath 'com.diffplug.gradle:goomph:3.32.1'
classpath 'com.palantir.gradle.externalpublish:gradle-external-publish-plugin:1.19.0'
classpath 'com.palantir.gradle.failure-reports:gradle-failure-reports:1.13.0'
classpath 'com.palantir.gradle.consistentversions:gradle-consistent-versions:2.29.0'
classpath 'com.gradle.publish:plugin-publish-plugin:1.3.0'
classpath 'com.palantir.baseline:gradle-baseline-java:6.1.0'
classpath 'com.palantir.javaformat:gradle-palantir-java-format:2.50.0'
}
}
plugins {
id 'com.palantir.git-version' version '3.1.0'
id 'org.inferred.processors' version '3.7.0'
}
apply plugin: 'com.palantir.external-publish'
apply plugin: 'com.palantir.failure-reports'
apply plugin: 'com.palantir.jdks'
apply plugin: 'com.palantir.consistent-versions'
apply plugin: 'com.palantir.baseline'
apply plugin: 'com.palantir.baseline-java-versions'
apply plugin: 'com.palantir.jdks.latest'
allprojects {
repositories {
mavenCentral() { metadataSources { mavenPom(); ignoreGradleMetadataRedirection() } }
gradlePluginPortal()
}
// Since we are using gradle-baseline in gradle-baseline we need to undo forces on project dependencies. Following
// snippet forces the version to be the version originally resolved by gradle and not the force that nebula forced
// it to.
configurations.all { c ->
c.resolutionStrategy { preferProjectModules() }
}
pluginManager.withPlugin('java') {
tasks.withType(JavaCompile) {
options.compilerArgs += ['-Werror', '-Xlint:deprecation']
options.errorprone {
disable("Slf4jLogsafeArgs")
disable("PreferSafeLoggableExceptions")
disable("PreferSafeLogger")
disable("PreferSafeLoggingPreconditions")
disable("PreconditionsConstantMessage")
}
}
}
apply plugin: 'org.inferred.processors'
apply plugin: 'com.palantir.java-format'
apply plugin: 'com.palantir.jakarta-package-alignment'
group = 'com.palantir.baseline'
version System.env.CIRCLE_TAG ?: gitVersion()
description = 'A Gradle plugin for applying Baseline-recommended build and IDE settings'
}
javaVersions {
libraryTarget = 17
}
jdks {
daemonTarget = 17
}