unbroken-dome / gradle-testsets-plugin

A plugin for the Gradle build system that allows specifying test sets (like integration or acceptance tests).
MIT License
230 stars 50 forks source link

Lombok does not work in a non-standard test set #133

Open jimshowalter opened 1 year ago

jimshowalter commented 1 year ago

Create an unbroken-dome test set other than component and integration.

Create a class in the test set that uses lombok:

import lombok.AllArgsConstructor;

@AllArgsConstructor
public class ThisWillFail {
    private final String foo;
}

Try to build.

It's not clear if this is a problem with unbroken-dome, lombok, or both, so filed https://github.com/projectlombok/lombok/issues/3391.