forked from temporalio/sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
37 lines (34 loc) · 1.29 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
plugins {
id 'com.github.sherter.google-java-format' version '0.9' apply false
id 'net.ltgt.errorprone' version '2.0.2' apply false
id 'org.cadixdev.licenser' version '0.6.1'
id 'com.palantir.git-version' version '0.13.0' apply false
id 'de.marcphilipp.nexus-publish' version '0.4.0' apply false
}
ext {
// Platforms.
// We have to use specific versions with platforms until Maven 4.0.0 is released
// See https://github.com/temporalio/sdk-java/issues/1033
//
// grpcVersion = '[1.34.0,)!!1.44.1'
// jacksonVersion = '[2.9.0,)!!2.13.1'
// micrometerVersion = '[1.0.0,)!!1.8.3'
grpcVersion = '1.45.0'
jacksonVersion = '2.13.1'
micrometerVersion = '1.8.4'
logbackVersion = '1.2.11'
protoVersion = '[3.10.0,3.99)!!3.19.4'
annotationApiVersion = '1.3.2'
guavaVersion = '[10.0,)!!31.1-jre'
jsonPathVersion = '2.7.0'
mockitoVersion = '4.4.0'
tallyVersion = '[0.4.0,)!!0.11.1'
gsonVersion = '[2.0,)!!2.9.0'
slf4jVersion = '[1.4.0,)!!1.7.36'
}
apply from: "$rootDir/gradle/versioning.gradle"
apply from: "$rootDir/gradle/java.gradle"
apply from: "$rootDir/gradle/errorprone.gradle"
apply from: "$rootDir/gradle/licensing.gradle"
apply from: "$rootDir/gradle/publishing.gradle"
apply from: "$rootDir/gradle/dependencyManagement.gradle"