File tree Expand file tree Collapse file tree
src/main/java/studio/o7/remora/extensions Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66import org .gradle .jvm .toolchain .JavaLanguageVersion ;
77import studio .o7 .remora .extensions .framework .FrameworkExtension ;
88
9+ import javax .inject .Inject ;
10+
911@ Getter
1012@ Setter
1113public class RemoraExtension {
@@ -20,6 +22,7 @@ public class RemoraExtension {
2022
2123 private FrameworkExtension framework ;
2224
25+ @ Inject
2326 public RemoraExtension (ObjectFactory factory ) {
2427 this .framework = factory .newInstance (FrameworkExtension .class );
2528 }
Original file line number Diff line number Diff line change 44import lombok .Setter ;
55import org .gradle .api .model .ObjectFactory ;
66
7+ import javax .inject .Inject ;
8+
79@ Getter
810@ Setter
911public class FrameworkExtension {
1012 private LombokExtension lombok ;
1113
14+ @ Inject
1215 public FrameworkExtension (ObjectFactory factory ) {
1316 lombok = factory .newInstance (LombokExtension .class );
1417 }
You can’t perform that action at this time.
0 commit comments