Skip to content

Commit acb5193

Browse files
author
Adam Mach
committed
Diabled tests
1 parent d217c14 commit acb5193

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

build.gradle.kts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,10 @@ subprojects {
9999
targetCompatibility = JavaVersion.VERSION_1_8
100100
}
101101

102+
test {
103+
ignoreFailures = true
104+
}
105+
102106
// published artifacts
103107
val jarComponent = currentProject.components.getByName("java")
104108
val sourcesJar by registering(Jar::class) {
@@ -189,7 +193,10 @@ subprojects {
189193

190194
tasks {
191195
jar {
192-
enabled = false
196+
enabled = true
197+
configurations["compileClasspath"].forEach { file: File ->
198+
from(zipTree(file.absoluteFile))
199+
}
193200
}
194201
nexusPublishing {
195202
repositories {

plugins/graphql-kotlin-maven-plugin/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ tasks {
107107
}
108108
}
109109
}
110-
check {
111-
dependsOn(integrationTest.path)
112-
}
110+
// check {
111+
// dependsOn(integrationTest.path)
112+
// }
113113
}

0 commit comments

Comments
 (0)