由于“JAR文件中没有主要清单属性”错误,我无法从终端执行jar文件。我在'pom.xml'中添加了一个带有main方法的类的引用,但是当我尝试执行该文件时没有检测到它。
这是我的POM文件:
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>com.countrymapper.CountryMapperApplication</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>