Thomas Keller
03/11/2025, 4:03 PM@Input
definitions in an abstract
base class of some custom task? It seems as if no code is generated for abstract val something: Property<String>
, instead an error is thrown Cannot have abstract method MyAbstractClass.getSomething(): Property<String>
. So code / configuration sharing via a base class is not supported then I guess?Thomas Keller
03/11/2025, 4:09 PMAbstractKotlinCompile
, this has annotated properties as well... damn.Thomas Keller
03/11/2025, 4:11 PMgetSomething
method on the same class. Stupid me.