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 4675dbf commit faff11aCopy full SHA for faff11a
build.gradle.kts
@@ -1,13 +1,9 @@
1
-import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar
2
-import org.gradle.internal.hash.Hashing
3
-
4
plugins {
5
`kotlin-dsl`
6
`groovy-gradle-plugin`
7
id("org.jetbrains.kotlin.jvm") version "1.8.20"
8
`idea`
9
10
- `signing`
11
`java-library`
12
`maven-publish`
13
id("com.gradle.plugin-publish") version "1.2.1"
@@ -91,9 +87,9 @@ processResources {
91
87
publishing {
92
88
publications {
93
89
create<MavenPublication>("maven") {
94
- groupId = "org.gradle.sample"
95
- artifactId = "library"
96
- version = "1.1"
90
+ groupId = "${project.group}"
+ artifactId = "wiremock-extension-convention"
+ version = "${project.version}"
97
98
from(components["java"])
99
}
0 commit comments