forked from ververica/lab-flink-repository-analytics
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
20 lines (18 loc) · 838 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
dependencies {
shadow "${flinkGroup}:flink-table-api-java-bridge:${flinkVersion}"
shadow "${flinkGroup}:flink-table-planner_${scalaBinaryVersion}:${flinkVersion}"
testImplementation "junit:junit:${junitVersion}"
testImplementation 'org.hamcrest:hamcrest-library:1.3'
testImplementation "${flinkGroup}:flink-test-utils-junit:${flinkVersion}"
testImplementation "${flinkGroup}:flink-test-utils:${flinkVersion}"
testImplementation "${flinkGroup}:flink-table-planner_${scalaBinaryVersion}:${flinkVersion}:tests"
testImplementation "${flinkGroup}:flink-statebackend-rocksdb:${flinkVersion}"
}
publishing {
publications {
shadow(MavenPublication) { publication ->
project.shadow.component(publication)
artifactId = "${project.parent.name}-${project.name}"
}
}
}