美文网首页
Maven 将所有引用jar包输入指定目录

Maven 将所有引用jar包输入指定目录

作者: 步闲 | 来源:发表于2018-06-05 15:25 被阅读5次
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <executions>
        <execution>
            <id>copy-dependencies</id>
            <phase>package</phase>
            <goals>
                <goal>copy-dependencies</goal>
            </goals>
            <configuration>
                <outputDirectory>${project.build.directory}/lib/</outputDirectory>
            </configuration>
        </execution>
    </executions>
</plugin>

如下图:

相关文章

网友评论

      本文标题:Maven 将所有引用jar包输入指定目录

      本文链接:https://www.haomeiwen.com/subject/ozapsftx.html