-
Notifications
You must be signed in to change notification settings - Fork 545
Closed as not planned
Labels
Description
Description
I have applied the SQLDelight Gradle Plugin to my Gradle project. Everything works, but I would like to see the source code to find out more about how to configure the plugin.
// buildSrc/build.gradle.kts
dependencies {
implementation("com.squareup.sqldelight:gradle-plugin:1.5.4")
}
// build.gradle.kts
plugins {
kotlin("multiplatform") version "1.7.20"
com.squareup.sqldelight
}
...
sqldelight {
linkSqlite
database("Database") {
packageName = "com.example"
}
}
When I ctrl+click on linkSqlite
in the sqldelight
block, I'm taken to a decompiled .class file
I would like to be able to ctrl+click and go to the source code, so that I can see what options are available, and what they do.
Versions:
- SQLDelight 1.5.4
- Gradle 7.5.1
- Kotlin Multiplatform 1.7.20