在 Maven 中创建可执行 jar 文件,清单中缺少 main-class

Create executable jar file in maven,missing main-class in manifest

这是我的 pom.xml 我如何制作可执行 jar,我在 google 中读到它需要在 manifest.mf 中有主要的 class。我尝试使用 addind 插件但没有 -

 <?xml version="1.0" encoding="UTF-8"?>
           <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
       http://maven.apache.org/xsd/maven-4.0.0.xsd">
               <modelVersion>4.0.0</modelVersion>
               <groupId>com.mycompany</groupId>
               <artifactId>Sims_for_Import</artifactId>
               <version>1.0-SNAPSHOT</version>
               <packaging>jar</packaging>
               <properties>
                   <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
                   <maven.compiler.source>1.8</maven.compiler.source>
                   <maven.compiler.target>1.8</maven.compiler.target>
               </properties>
               <dependencies>
             <dependency>
             <groupId>com.oracle</groupId>
             <artifactId>ojdbc6</artifactId>
             <version>11.2.0.3</version>
               <!--<scope>system</scope>-->
               <!--<systemPath>${basedir}/ojdbc6-11.2.0.3.jar</systemPath>-->
           </dependency>
            <dependency>
                  <groupId>com.microsoft.sqlserver</groupId>
             <artifactId>sqljdbc42</artifactId>
             <version>4.2</version>
            </dependency>
               </dependencies>
               <name>Sims_for_Import</name>
           </project>

你应该使用 maven-jar-plugin 来打包你的 jarfile 并提供一个主要的 class:

<build>
    <plugins>
        <!-- ... other plugins ... -->
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-jar-plugin</artifactId>
            <version>3.1.1</version>
            <configuration>
                <archive>
                    <manifest>
                        <!-- Your main class -->
                        <mainClass>sims_for_import.Main</mainClass>
                    </manifest>
                </archive>
            </configuration>
        </plugin>
    </plugins>
</build>

您可以在 maven central repository 上看到最新的可用插件版本列表。