We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcd6cef commit be1fe7cCopy full SHA for be1fe7c
lib/build.gradle
@@ -5,10 +5,6 @@ plugins {
5
id "com.diffplug.spotless" version "7.2.1"
6
}
7
8
-ext {
9
- javaMainClass = "io.cloudquery.MainClass"
10
-}
11
-
12
group 'io.cloudquery'
13
// x-release-please-start-version
14
version = '0.0.44'
@@ -109,10 +105,10 @@ publishing {
109
105
110
106
111
107
task runMemDBServe(type: JavaExec) {
108
+ mainClass.set("io.cloudquery.MainClass")
112
group = "Execution"
113
description = "Start the MemDB plugin server"
114
classpath = sourceSets.main.runtimeClasspath
115
- main = javaMainClass
116
args = ["serve"]
117
jvmArgs = ["--add-opens=java.base/java.nio=ALL-UNNAMED"]
118
0 commit comments