如何通过使用Maven将Springboot项目打包到* .ear文件中?

时间:2020-02-24 04:56:53

标签: java maven

我想将一个简单的Springboot项目打包到*.ear中,而不是一个jar文件中。如何修改pom.xml

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
    </parent>
    ...
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

0 个答案:

没有答案