注册
登录

您现在的位置是:首页 > 学无止境

MAVEN项目打包后提示没有主清单属性解决方案

木木彡82 2023-04-18 21:00:46 0人围观
MAVEN项目打包后提示没有主清单属性解决方案

转载自:https://blog.csdn.net/weixin_44109652/article/details/122860081

1、普通maven项目中打包后运行提示没有主清单属性解决方案

<build>

        <plugins>

            <plugin>

                <groupId>org.apache.maven.plugins</groupId>

                <artifactId>maven-jar-plugin</artifactId>

                <version>3.2.2</version>

                <configuration>

                    <archive>

                        <manifest>

                            <addClasspath>true</addClasspath>

                            <mainClass>com.jobsche.plugin.RemoteCheckApp</mainClass> <!-- 此处为主入口-->

                        </manifest>

                    </archive>

                </configuration>

            </plugin>

        </plugins>

    </build>

2、SpringBoot的maven项目中打包后运行提示没有主清单属性解决方案

<build>

        <plugins>

            <plugin>

                <groupId>org.springframework.boot</groupId>

                <artifactId>spring-boot-maven-plugin</artifactId>

                <version>${spring.boot.dependencies.version}</version>

                <executions>

                    <execution>

                        <goals>

                            <goal>repackage</goal>

                        </goals>

                    </execution>

                </executions>

            </plugin>

        </plugins>

    </build>

文章评论

  • 登录后评论

点击排行