Do you have any name convention for 3rd party feat...
# declarative-gradle
p
Do you have any name convention for 3rd party feature authors? I have a very unique name for my feature (“Gradle for SAP Integration Suite”), but should I always prefix my feature with this name or use a wrapper deep in the hierarchy?
Copy code
jvmApplication {
  toolchain.releaseVersion = 8

  kotlin {
    serialization {

    }
  }

  dependencies {
    implementation(libs.serialization.json)
  }

  ciKraft {
    // enables the main feature
  }

  testSuites {
    suites {
      kotlinTestSuite("test") {
        ciKraft { // should I reuse my main name or something else?
          iFlow {
            generateFunctions { }
          }
          apiProxies {
            generateFunctions { }
          }
        }
      }
    }
  }
}
In case somebody wants to take a look: https://github.com/softwork-app/cikraft