forked from temporalio/features
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
50 lines (43 loc) · 1.12 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
plugins {
id 'java'
id 'com.diffplug.spotless' version '6.18.0'
}
group 'io.temporal'
version '0.1.0-SNAPSHOT'
java {
sourceCompatibility = JavaVersion.VERSION_1_10
targetCompatibility = JavaVersion.VERSION_1_10
}
repositories {
maven {
url "https://oss.sonatype.org/content/repositories/snapshots/"
}
mavenCentral()
}
spotless {
ratchetFrom 'origin/main'
java {
googleJavaFormat('1.16.0')
}
}
dependencies {
implementation 'ch.qos.logback:logback-classic:1.2.9'
implementation 'com.google.guava:guava:31.0.1-jre'
implementation 'com.google.code.gson:gson:2.8.9'
implementation 'com.jayway.jsonpath:json-path:2.6.0'
implementation 'info.picocli:picocli:4.6.2'
implementation 'io.temporal:temporal-sdk:1.25.0'
implementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
implementation 'org.reflections:reflections:0.10.2'
}
sourceSets {
main {
java {
srcDirs = ['features', 'harness/java']
}
// Use the same dirs for resources
resources {
srcDirs = ['features', 'harness/java']
}
}
}