-
Notifications
You must be signed in to change notification settings - Fork 41.2k
Integrate AOT generation in Spring Boot Maven Plugin #30525
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Labels
Milestone
Comments
snicoll
added a commit
to snicoll/spring-boot
that referenced
this issue
Apr 4, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes spring-projectsgh-30525
snicoll
added a commit
to snicoll/spring-boot
that referenced
this issue
Apr 4, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes spring-projectsgh-30525
snicoll
added a commit
to snicoll/spring-boot
that referenced
this issue
Apr 6, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes spring-projectsgh-30525
snicoll
added a commit
to snicoll/spring-boot
that referenced
this issue
Apr 6, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes spring-projectsgh-30525
wilkinsona
pushed a commit
to wilkinsona/spring-boot
that referenced
this issue
Apr 6, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes spring-projectsgh-30525
snicoll
added a commit
to snicoll/spring-boot
that referenced
this issue
Apr 7, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes spring-projectsgh-30525
snicoll
added a commit
that referenced
this issue
Apr 10, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes gh-30525
snicoll
added a commit
that referenced
this issue
Apr 12, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes gh-30525
snicoll
added a commit
that referenced
this issue
Apr 12, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes gh-30525
snicoll
added a commit
that referenced
this issue
Apr 13, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes gh-30525
snicoll
added a commit
that referenced
this issue
Apr 13, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes gh-30525
wilkinsona
pushed a commit
that referenced
this issue
Apr 13, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes gh-30525
philwebb
pushed a commit
to philwebb/spring-boot
that referenced
this issue
Apr 19, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes spring-projectsgh-30525
snicoll
added a commit
that referenced
this issue
Apr 25, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes gh-30525
wilkinsona
pushed a commit
that referenced
this issue
Apr 27, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes gh-30525
wilkinsona
pushed a commit
that referenced
this issue
Apr 27, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes gh-30525
wilkinsona
pushed a commit
that referenced
this issue
Apr 28, 2022
This commit adds an `aot-generate` goal to the Maven Plugin that triggers AOT generation on the application. The new goal shares a number of properties with the existing `run` goal and uses the same algorithm to detect the main class to use. Closes gh-30525
After 08768bd, this is still failing. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Spring Framework has recently introduced a way to inspect the state of an application at build-time, and generate code that provides an optimized version of it.
This issue is about integrating the AOT generation part in the Maven Plugin so that those optimizations can be added to the repackaged archive and/or used by
native-image
to build a native image for the application.The text was updated successfully, but these errors were encountered: