Caleb Cushing
02/21/2024, 1:05 AMAn exception occurred applying plugin request [id: 'com.xenoterracide.gradle.sem-ver']
> Failed to apply plugin 'com.xenoterracide.gradle.sem-ver'.
> Could not create an instance of type com.xenoterracide.gradle.semver.AbstractGitService$Params.
> Could not generate a decorated class for type AbstractGitService.Params.
> Cannot have abstract method Params.projectDir().
Chris Lee
02/21/2024, 1:42 AMParams
? Error message says Params.projectDir
but the class has projectDirectory
. Perhaps it should be public abstract class AbstractGitService implements BuildService<AbstractGitService.Params>, AutoCloseable
?Vampire
02/21/2024, 8:03 AMParams
is imported, I guess it is the right one and the error message was manually mistyped.
Try naming the param get...()
Caleb Cushing
02/21/2024, 1:34 PM