Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ internal val KOTLIN_NATIVE_PUBLICATION_NAMES = setOf(

// TODO Refactor to support project names _or_ publication group names.
// aws-crt-kotlin is not published with a group name, so we need to check project names instead.
private val KOTLIN_NATIVE_PROJECT_NAMES = setOf(
"aws-crt-kotlin",
private val KOTLIN_NATIVE_PROJECT_NAMES = setOf<String>(
// "aws-crt-kotlin", // TODO Re-enable when ready to publish aws-crt-kotlin Kotlin/Native artifacts
)

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class PublishTest {
version = "1.2.3"
artifactId = "aws-crt-kotlin"
}
assertTrue(isAvailableForPublication(project, nativeRuntimePublication))
assertFalse(isAvailableForPublication(project, nativeRuntimePublication))
}
}
}
Expand Down
Loading