我看nutzboot-maven-plugin的源码好像可以指定 mainClass吧?
怎么指定?我改了NbApp(继承了一下),导致找不到。
<plugin>
<groupId>org.nutz.boot</groupId>
<artifactId>nutzboot-maven-plugin</artifactId>
<version>${nutzboot.version}</version>
<executions>
<execution>
<phase>package</phase>
<configuration>
<archive>
<manifest>
<mainClass>com.xxxx.xxxx..MainLauncher</mainClass>
</manifest>
</archive>
</configuration>
</execution>
</executions>
</plugin>