0

我想使用 maven-scm-plugin 从 git 存储库(又名克隆)下载文件到项目目录

我收到一个错误

Failed to execute goal org.apache.maven.plugins:maven-scm-plugin:1.12.2:export (myjsp) on project myproject-tomcat-web: Execution myjsp of goal org.apache.maven.plugins:maven-scm-plugin:1.12.2:export failed.: NullPointerException

在 pom.xml 我使用以下构造

            <plugin>
                <artifactId>maven-scm-plugin</artifactId>
                <version>1.12.2</version>
                <executions>
                    <execution>
                        <id>myjsp</id>
                        <phase>generate-resources</phase>
                        <goals>
                            <goal>export</goal>
                        </goals>
                        <configuration>
                            <connectionUrl>scm:git:https://git.myserver.com/myurl.git</connectionUrl>
                            <exportDirectory>target/web-resources/WEB-INF/resource</exportDirectory>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

同时,一切都从 SVN 存储库正常加载(将 url 设置为 connectionUrl 时)。

可能是什么问题呢?

4

1 回答 1

0

已解决,应该设置 checkoutDirectory 而不是 exportDirectory

于 2022-02-10T08:05:54.113 回答