Skip to content

Commit

Permalink
feat: Unfinaled extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
julian-siebert committed Dec 31, 2024
1 parent a18ea77 commit 8d8da7b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
@Data
public class FrameworkExtension {
@Optional
private final Lombok lombok = new Lombok();
private Lombok lombok = new Lombok();
@Optional
private final FastUtils fastUtils = new FastUtils();
private FastUtils fastUtils = new FastUtils();

@Data
public static class Lombok {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ public class RemoraExtension {
/**
* Configuration of included frameworks.
*/
private final FrameworkExtension framework = new FrameworkExtension();
private FrameworkExtension framework = new FrameworkExtension();

/**
* Configuration of publishing strategies.
*/
private final PublishingExtension publishing = new PublishingExtension();
private PublishingExtension publishing = new PublishingExtension();
}

0 comments on commit 8d8da7b

Please # to comment.