CrazyHZM opened a new issue, #13365: URL: https://github.com/apache/dubbo/issues/13365
Current ``` <plugin> <groupId>org.apache.dubbo</groupId> <artifactId>dubbo-maven-plugin</artifactId> <version>${dubbo.version}</version> <configuration> <mainClass>org.apache.dubbo.nativeimage.provider.NativeDemoProviderApplication</mainClass> </configuration> <executions> <execution> <phase>process-sources</phase> <goals> <goal>dubbo-process-aot</goal> </goals> </execution> </executions> </plugin> ``` Hope Simplify main class configuration, and dubbo can automatically identify and configure the main class. ``` <plugin> <groupId>org.apache.dubbo</groupId> <artifactId>dubbo-maven-plugin</artifactId> <version>${dubbo.version}</version> <executions> <execution> <phase>process-sources</phase> <goals> <goal>dubbo-process-aot</goal> </goals> </execution> </executions> </plugin> ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@dubbo.apache.org For additional commands, e-mail: notifications-h...@dubbo.apache.org