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 a827b24 commit ede54bcCopy full SHA for ede54bc
client/build.gradle.kts
@@ -11,7 +11,6 @@ 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"
@@ -105,8 +104,8 @@ protobuf {
105
104
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")
@@ -210,12 +209,5 @@ spotless {
210
209
211
212
213
-tasks {
214
- shadowJar {
215
- archiveClassifier.set("")
216
- mergeServiceFiles()
217
- }
218
-}
219
-
220
jmh {
221
0 commit comments