-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (26 loc) · 759 Bytes
/
build.gradle
File metadata and controls
31 lines (26 loc) · 759 Bytes
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
plugins {
id 'com.github.johnrengelman.shadow' version '8.1.1'
id 'application'
}
repositories {
mavenLocal()
maven {
url = uri('https://repo.maven.apache.org/maven2/')
}
}
dependencies {
// Extra dedependencies provided so actions don't need to provide them:
// https://github.com/googleapis/java-bigquery
implementation platform('com.google.cloud:libraries-bom:26.11.0')
implementation 'com.google.cloud:google-cloud-bigquery'
implementation 'org.jsoup:jsoup:1.15.4'
}
group = 'com.mattwelke.owr.java19'
version = '1.0.0'
description = 'apache-openwhisk-runtime-java-19'
mainClassName = "com.mattwelke.owr.java19.Proxy"
java {
toolchain {
languageVersion = JavaLanguageVersion.of(19)
}
}