File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
buildSrc/src/main/java/org/springframework/boot/build/architecture Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 2222import org .gradle .api .Plugin ;
2323import org .gradle .api .Project ;
2424import org .gradle .api .Task ;
25- import org .gradle .api .plugins .JavaBasePlugin ;
25+ import org .gradle .api .plugins .JavaPlugin ;
2626import org .gradle .api .plugins .JavaPluginExtension ;
2727import org .gradle .api .tasks .SourceSet ;
2828import org .gradle .api .tasks .TaskProvider ;
@@ -39,7 +39,7 @@ public class ArchitecturePlugin implements Plugin<Project> {
3939
4040 @ Override
4141 public void apply (Project project ) {
42- project .getPlugins ().withType (JavaBasePlugin .class , (javaPlugin ) -> registerTasks (project ));
42+ project .getPlugins ().withType (JavaPlugin .class , (javaPlugin ) -> registerTasks (project ));
4343 }
4444
4545 private void registerTasks (Project project ) {
You can’t perform that action at this time.
0 commit comments