在写一个简单的java se程序打包成jar报 “没有主清单属性”,原因是mave打包插件没做配置,在pom.xml加下如下配置,并相应修改主main全限定类名。
修改pom.xml
<build> <finalName>App</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>1.2.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer"> <mainClass>com.ay.AppTest</mainClass> </transformer> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build>
然后再次使用maven命令clean、compile、package命令打包,并使用其中类似App-1.0-SNAPSHOT.jar的包
jar -jar xxx.jar
最新评论