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 22
22
import org .gradle .api .Plugin ;
23
23
import org .gradle .api .Project ;
24
24
import org .gradle .api .Task ;
25
- import org .gradle .api .plugins .JavaBasePlugin ;
25
+ import org .gradle .api .plugins .JavaPlugin ;
26
26
import org .gradle .api .plugins .JavaPluginExtension ;
27
27
import org .gradle .api .tasks .SourceSet ;
28
28
import org .gradle .api .tasks .TaskProvider ;
@@ -39,7 +39,7 @@ public class ArchitecturePlugin implements Plugin<Project> {
39
39
40
40
@ Override
41
41
public void apply (Project project ) {
42
- project .getPlugins ().withType (JavaBasePlugin .class , (javaPlugin ) -> registerTasks (project ));
42
+ project .getPlugins ().withType (JavaPlugin .class , (javaPlugin ) -> registerTasks (project ));
43
43
}
44
44
45
45
private void registerTasks (Project project ) {
You can’t perform that action at this time.
0 commit comments