-
Notifications
You must be signed in to change notification settings - Fork 53
/
build.gradle
45 lines (42 loc) · 1.96 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
plugins {
id 'openhouse.springboot-ext-conventions'
id 'openhouse.hadoop-conventions'
id 'openhouse.iceberg-conventions-1.5.2'
id 'openhouse.maven-publish'
/**
* FIXME: Ideally, the below line are also defined in shared buildSrc. But raises following error:
* Invalid plugin request [id: 'org.springframework.boot', version: '2.1.2.RELEASE'].
* Plugin requests from precompiled scripts must not include a version number.
* Please remove the version from the offending request and make sure the module
* containing the requested plugin 'org.springframework.boot' is an implementation dependency.
*/
id 'org.springframework.boot' version '2.7.8'
/**
* These are the dependencies to enable client generation for the service.
* */
id 'com.github.johnrengelman.processes' version '0.5.0'
id 'org.springdoc.openapi-gradle-plugin' version '1.6.0'
id 'openhouse.service-specgen-convention'
}
dependencies {
implementation project(':services:common')
implementation project(':iceberg:openhouse:internalcatalog')
implementation project(':client:hts')
implementation project(':cluster:configs')
implementation project(':cluster:storage')
implementation project(':cluster:metrics')
implementation 'org.springframework.boot:spring-boot-starter-webflux:' + springVersion
implementation 'org.springframework.retry:spring-retry:1.3.3'
implementation 'io.netty:netty-resolver-dns-native-macos:4.1.70.Final:osx-x86_64'
implementation 'org.apache.livy:livy-api:0.7.0-incubating'
implementation 'org.apache.livy:livy-client-common:0.7.0-incubating'
implementation 'org.apache.livy:livy-client-http:0.7.0-incubating'
testImplementation(testFixtures(project(':services:common')))
testImplementation "com.squareup.okhttp3:okhttp:" + ok_http3_version
testImplementation "com.squareup.okhttp3:mockwebserver:" + ok_http3_version
}
test {
if (JavaVersion.current() >= JavaVersion.VERSION_1_9) {
jvmArgs '--add-opens=java.base/java.util=ALL-UNNAMED'
}
}