-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathbuild.gradle
83 lines (70 loc) · 2.79 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
buildscript {
repositories {
mavenCentral() { metadataSources { mavenPom(); ignoreGradleMetadataRedirection() } }
gradlePluginPortal() { metadataSources { mavenPom(); ignoreGradleMetadataRedirection() } }
}
dependencies {
classpath 'com.palantir.jakartapackagealignment:jakarta-package-alignment:0.6.0'
classpath 'com.palantir.baseline:gradle-baseline-java:5.64.0'
classpath 'com.palantir.gradle.consistentversions:gradle-consistent-versions:2.23.0'
classpath 'com.palantir.gradle.externalpublish:gradle-external-publish-plugin:1.15.0'
classpath 'com.palantir.gradle.failure-reports:gradle-failure-reports:1.11.0'
classpath 'com.palantir.gradle.gitversion:gradle-git-version:3.1.0'
classpath 'com.palantir.gradle.jdks:gradle-jdks:0.44.0'
classpath 'com.palantir.gradle.jdkslatest:gradle-jdks-latest:0.15.0'
classpath 'com.palantir.javaformat:gradle-palantir-java-format:2.50.0'
classpath 'gradle.plugin.org.inferred:gradle-processors:3.7.0'
classpath 'me.champeau.jmh:jmh-gradle-plugin:0.7.2'
}
}
allprojects {
apply plugin: 'com.palantir.jakarta-package-alignment'
}
apply plugin: 'java-library'
apply plugin: 'com.palantir.baseline'
apply plugin: 'com.palantir.baseline-java-versions'
apply plugin: 'com.palantir.consistent-versions'
apply plugin: 'com.palantir.external-publish'
apply plugin: 'com.palantir.git-version'
apply plugin: 'com.palantir.java-format'
apply plugin: 'com.palantir.jdks.latest'
apply plugin: 'me.champeau.jmh'
apply plugin: 'org.inferred.processors'
group 'com.palantir.ri'
version gitVersion()
apply plugin: 'com.palantir.external-publish-jar'
apply plugin: 'com.palantir.failure-reports'
repositories {
mavenCentral() { metadataSources { mavenPom(); ignoreGradleMetadataRedirection() } }
}
dependencies {
implementation 'com.fasterxml.jackson.core:jackson-annotations'
implementation 'com.google.errorprone:error_prone_annotations'
implementation 'com.palantir.safe-logging:safe-logging'
implementation 'com.palantir.safe-logging:preconditions'
testImplementation 'com.fasterxml.jackson.core:jackson-databind'
testImplementation 'net.jqwik:jqwik'
testImplementation 'org.junit.jupiter:junit-jupiter'
testImplementation 'com.palantir.safe-logging:preconditions-assertj'
jmh 'org.openjdk.jmh:jmh-core'
jmh 'org.openjdk.jmh:jmh-generator-annprocess'
}
configurations.testCompileClasspath {
exclude module: 'junit'
}
tasks.withType(Test) {
useJUnitPlatform {
includeEngines 'jqwik', 'junit-jupiter'
}
}
jmh {
profilers = ['gc']
}
tasks.jmhCompileGeneratedClasses {
options.annotationProcessorPath = configurations.errorprone
options.errorprone.enabled = false
}
javaVersions {
libraryTarget = 11
runtime = 21
}