forked from temporalio/sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
126 lines (104 loc) · 3.72 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
buildscript {
ext {
// 0.11.0 and later are build on JDK 11 bytecode version
graalVersion = "${JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_11) ? '0.12.0' : '0.10.0'}"
}
}
plugins {
id 'application'
id 'com.palantir.graal' version "${graalVersion}"
id 'com.google.protobuf' version '0.9.2'
}
apply plugin: 'idea' // IntelliJ plugin to see files generated from protos
description = '''Temporal test workflow server'''
dependencies {
api project(':temporal-sdk')
if (JavaVersion.current().isJava9Compatible()) {
//needed for the generated grpc stubs and is not a part of JDK since java 9
compileOnly "javax.annotation:javax.annotation-api:$annotationApiVersion"
}
implementation "com.google.guava:guava:$guavaVersion"
implementation("com.cronutils:cron-utils:${cronUtilsVersion}") {
// com.cronutils:cron-utils:9.2.1 carries slf4j 2.x
exclude group: 'org.slf4j', module: 'slf4j-api'
}
testImplementation project(':temporal-testing')
testImplementation "junit:junit:${junitVersion}"
testImplementation "org.mockito:mockito-core:${mockitoVersion}"
testRuntimeOnly group: 'ch.qos.logback', name: 'logback-classic', version: "${logbackVersion}"
}
application {
getMainClass().set('io.temporal.testserver.TestServer')
}
jar {
exclude '**/*.proto'
includeEmptyDirs false
manifest {
attributes("Main-Class": application.getMainClass().get())
}
}
// Needed to include generated files into the source jar
sourcesJar {
dependsOn 'generateProto'
from(file("$buildDir/generated/main/java"))
// Solves: "Entry gogoproto/Gogo.java is a duplicate but no duplicate handling strategy has been set.
// Please refer to https://docs.gradle.org/7.6/dsl/org.gradle.api.tasks.Copy.html#org.gradle.api.tasks.Copy:duplicatesStrategy for details."
.setDuplicatesStrategy(DuplicatesStrategy.EXCLUDE)
}
protobuf {
// version/variables substitution is not supported in protobuf section.
// protoc and protoc-gen-grpc-java versions are selected to be compatible
// with the oldest supported versions of protoc and grpc artifacts.
protoc {
artifact = 'com.google.protobuf:protoc:3.25.5' + (System.getProperty("os.arch") == 'aarch64' && System.getProperty("os.name") == 'Mac OS X' ? ':osx-x86_64' : '')
}
plugins {
grpc {
artifact = 'io.grpc:protoc-gen-grpc-java:1.34.1' + (System.getProperty("os.arch") == 'aarch64' && System.getProperty("os.name") == 'Mac OS X' ? ':osx-x86_64' : '')
}
}
generateProtoTasks {
all()*.builtins {
java {
option 'annotate_code'
}
}
all()*.plugins {
grpc {
outputSubDir = 'java'
}
}
}
}
clean {
delete protobuf.generatedFilesBaseDir
}
protobuf {
generatedFilesBaseDir = "$buildDir/generated"
}
idea {
module {
sourceDirs += file("$buildDir/generated/main/java")
sourceDirs += file("$buildDir/generated/main/grpc")
}
}
graal {
outputName "temporal-test-server"
mainClass application.getMainClass().get()
javaVersion '17'
graalVersion '22.3.1'
// Don't fallback to running a JVM
option "--no-fallback"
// Signal handling so that ^C actually stops the process
option "--install-exit-handlers"
// If we're on linux, static link everything but libc. Otherwise link
// everything dynamically (note the '-' rather than '+' in fromt of
// StaticExecutable)
option isLinux()
? "-H:+StaticExecutableWithDynamicLibC"
: "-H:-StaticExecutable"
}
def isLinux() {
return System.properties['os.name'].toLowerCase().contains('linux')
}
tasks.build.dependsOn('nativeImage')