Skip to content

Gradle Plugin source code not available in IntelliJ #3642

@aSemy

Description

@aSemy

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

image

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions