We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3df7c83 commit 44e7dd3Copy full SHA for 44e7dd3
spring-boot-project/spring-boot/src/main/java/org/springframework/boot/SpringApplicationAotProcessor.java
@@ -66,7 +66,7 @@ protected GenericApplicationContext prepareApplicationContext(Class<?> applicati
66
public static void main(String[] args) throws Exception {
67
int requiredArgs = 6;
68
Assert.isTrue(args.length >= requiredArgs, () -> "Usage: " + SpringApplicationAotProcessor.class.getName()
69
- + " <applicationName> <sourceOutput> <resourceOutput> <classOutput> <groupId> <artifactId> <originalArgs...>");
+ + " <applicationMainClass> <sourceOutput> <resourceOutput> <classOutput> <groupId> <artifactId> <originalArgs...>");
70
Class<?> application = Class.forName(args[0]);
71
Settings settings = Settings.builder()
72
.sourceOutput(Paths.get(args[1]))
0 commit comments