maven 依赖拷贝

来源:互联网 发布:vscode 安装npm 编辑:程序博客网 时间:2024/06/07 09:52
<plugin>                <groupId>org.apache.maven.plugins</groupId>                <artifactId>maven-dependency-plugin</artifactId>                <version>2.8</version>                <executions>                    <execution>                        <phase>prepare-package</phase>                        <goals>                            <goal>copy-dependencies</goal>                        </goals>                        <configuration>                            <outputDirectory>${project.basedir}/target/lib</outputDirectory>                        </configuration>                    </execution>                </executions>            </plugin>

拷贝依赖


0 0