-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
30 lines (22 loc) · 864 Bytes
/
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
plugins {
id 'java'
}
group 'org.example'
version '1.0-SNAPSHOT'
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.apache.flink/flink-streaming-java
compileOnly group: 'org.apache.flink', name: 'flink-streaming-java', version: '1.20.0'
// https://mvnrepository.com/artifact/org.apache.flink/flink-core
compileOnly group: 'org.apache.flink', name: 'flink-core', version: '1.20.0'
// https://mvnrepository.com/artifact/org.apache.flink/flink-clients
implementation group: 'org.apache.flink', name: 'flink-clients', version: '1.20.0'
implementation group: 'io.lettuce', name: 'lettuce-core', version: '6.3.2.RELEASE'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
}
test {
useJUnitPlatform()
}