Skip to content
Merged
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
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
val defaultGroupId = "cz.sazel.sqldelight"
val versionBase = "0.5.0"

val localProperties = Properties().apply {

Check notice on line 21 in build.gradle.kts

View workflow job for this annotation

GitHub Actions / Qodana Community for JVM

Function or property has platform type

Declaration has type inferred from a platform call, which can lead to unchecked nullability issues. Specify type explicitly as nullable or non-nullable.
try {
load(project.rootProject.file("local.properties").inputStream())
} catch (e: java.io.IOException) {
Expand Down Expand Up @@ -113,7 +113,7 @@
}
}

val javadocJar = tasks.register<Jar>("javadocJar") {

Check notice on line 116 in build.gradle.kts

View workflow job for this annotation

GitHub Actions / Qodana Community for JVM

Function or property has platform type

Declaration has type inferred from a platform call, which can lead to unchecked nullability issues. Specify type explicitly as nullable or non-nullable.
dependsOn(tasks.dokkaGenerate.get())
archiveClassifier.set("javadoc")
from(layout.buildDirectory.dir("dokka/html"))
Expand Down Expand Up @@ -177,7 +177,7 @@
maven { // OSS Sonatype (default)
val isSnapshot = version.toString().endsWith("SNAPSHOT")
val destination = if (!isSnapshot) {
"https://ossrh-staging-api.central.sonatype.com/service/local/staging/deploy/maven2/"
"https://ossrh-staging-api.central.sonatype.com/service/local/"
} else "https://central.sonatype.com/repository/maven-snapshots/"
url = uri(destination)
credentials {
Expand All @@ -199,7 +199,7 @@
}

// workaround for missing sqlite3 bindings
val bindingsInstall = tasks.register("sqlite3BindingsInstall") {

Check notice on line 202 in build.gradle.kts

View workflow job for this annotation

GitHub Actions / Qodana Community for JVM

Function or property has platform type

Declaration has type inferred from a platform call, which can lead to unchecked nullability issues. Specify type explicitly as nullable or non-nullable.
doFirst {

}
Expand Down
Loading