thats interesting, could you share the `buildscrip...
# gradle
m
thats interesting, could you share the `buildscript {}`/`plugins {}` blocks? what should happen, is the
kotlin-dsl
should generate those functions based on the plugins you have applied. if you apply the
java
plugin
Copy code
plugins {
  java
}
that will generate the different extensions like
compile
,
implementation
,
runtimeOnly
,
testImplementation
, (and others)