-
Notifications
You must be signed in to change notification settings - Fork 134
/
build.gradle
62 lines (53 loc) · 2.18 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
import net.ltgt.gradle.errorprone.CheckSeverity
buildscript {
repositories {
jcenter()
gradlePluginPortal()
maven { url 'https://palantir.bintray.com/releases'}
}
dependencies {
classpath 'com.palantir.gradle.consistentversions:gradle-consistent-versions:1.26.1'
classpath 'com.gradle.publish:plugin-publish-plugin:0.12.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.5'
classpath 'com.netflix.nebula:nebula-publishing-plugin:17.3.2'
classpath 'com.netflix.nebula:gradle-info-plugin:9.1.1'
classpath 'com.palantir.baseline:gradle-baseline-java:3.41.0'
classpath 'com.palantir.javaformat:gradle-palantir-java-format:1.0.1'
}
}
plugins {
id 'com.palantir.git-version' version '0.12.3'
id 'org.inferred.processors' version '3.3.0'
}
apply plugin: 'com.palantir.consistent-versions'
apply plugin: 'com.palantir.baseline'
allprojects {
repositories {
jcenter()
gradlePluginPortal()
maven { url 'https://palantir.bintray.com/releases'}
}
// 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') {
sourceCompatibility = 1.8
tasks.withType(JavaCompile) {
options.compilerArgs += ['-Werror', '-Xlint:deprecation']
options.errorprone {
check("Slf4jLogsafeArgs", CheckSeverity.OFF)
check("PreferSafeLoggableExceptions", CheckSeverity.OFF)
check("PreferSafeLoggingPreconditions", CheckSeverity.OFF)
check("PreconditionsConstantMessage", CheckSeverity.OFF)
}
}
}
apply plugin: 'org.inferred.processors'
apply plugin: 'com.palantir.java-format'
group = 'com.palantir.baseline'
version System.env.CIRCLE_TAG ?: gitVersion()
description = 'A Gradle plugin for applying Baseline-recommended build and IDE settings'
}