You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/plugin/SpringBootAotPlugin.java
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/tasks/aot/ProcessAot.java
+3-3
Original file line number
Diff line number
Diff line change
@@ -28,13 +28,13 @@
28
28
importorg.gradle.api.tasks.TaskAction;
29
29
30
30
/**
31
-
* Custom {@link JavaExec} task for generating sources ahead of time.
31
+
* Custom {@link JavaExec} task for processing code ahead-of-time.
32
32
*
33
33
* @author Andy Wilkinson
34
34
* @since 3.0.0
35
35
*/
36
36
@CacheableTask
37
-
publicclassGenerateAotSourcesextendsJavaExec {
37
+
publicclassProcessAotextendsJavaExec {
38
38
39
39
privatefinalProperty<String> applicationClass;
40
40
@@ -48,7 +48,7 @@ public class GenerateAotSources extends JavaExec {
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/test/java/org/springframework/boot/gradle/plugin/SpringBootAotPluginIntegrationTests.java
+10-10
Original file line number
Diff line number
Diff line change
@@ -39,30 +39,30 @@ class SpringBootAotPluginIntegrationTests {
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/test/resources/org/springframework/boot/gradle/plugin/SpringBootAotPluginIntegrationTests-processAotHasLibraryResourcesOnItsClasspath.gradle
+2-2
Original file line number
Diff line number
Diff line change
@@ -8,8 +8,8 @@ dependencies {
8
8
implementation project(":library")
9
9
}
10
10
11
-
task('generateAotSourcesClasspath') {
11
+
task('processAotClasspath') {
12
12
doFirst {
13
-
tasks.findByName('generateAotSources').classpath.files.each { println it }
13
+
tasks.findByName('processAot').classpath.files.each { println it }
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/test/resources/org/springframework/boot/gradle/plugin/SpringBootAotPluginIntegrationTests-processAotHasTransitiveRuntimeDependenciesOnItsClasspath.gradle
0 commit comments