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 4a49925 commit a827b24Copy full SHA for a827b24
client/build.gradle.kts
@@ -11,6 +11,7 @@ plugins {
11
id("com.diffplug.spotless") version "6.2.0"
12
13
id("me.champeau.jmh") version "0.6.7"
14
+ id("com.github.johnrengelman.shadow") version "7.1.2"
15
}
16
17
group = "io.hstream"
@@ -104,8 +105,8 @@ protobuf {
104
105
publishing {
106
publications {
107
create<MavenPublication>("mavenJava") {
108
+ project.shadow.component(this)
109
artifactId = "hstreamdb-java"
- from(components["java"])
110
versionMapping {
111
usage("java-api") {
112
fromResolutionOf("runtimeClasspath")
@@ -209,5 +210,12 @@ spotless {
209
210
211
212
213
+tasks {
214
+ shadowJar {
215
+ archiveClassifier.set("")
216
+ mergeServiceFiles()
217
+ }
218
+}
219
+
220
jmh {
221
0 commit comments