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 36b62bd commit b8ba162Copy full SHA for b8ba162
plugins/graphql-kotlin-maven-plugin/build.gradle.kts
@@ -86,6 +86,12 @@ tasks {
86
mustRunAfter("startWireMock")
87
}
88
val integrationTest by register("integrationTest") {
89
+ dependsOn(":graphql-kotlin-types:publishToMavenLocal")
90
+ dependsOn(":graphql-kotlin-client:publishToMavenLocal")
91
+ dependsOn(":graphql-kotlin-ktor-client:publishToMavenLocal")
92
+ dependsOn(":graphql-kotlin-spring-client:publishToMavenLocal")
93
+ dependsOn(":graphql-kotlin-plugin-core:publishToMavenLocal")
94
+ dependsOn("publishToMavenLocal")
95
dependsOn(startWireMock.path)
96
finalizedBy(stopWireMock.path)
97
timeout.set(Duration.ofSeconds(500))
0 commit comments