我正在尝试使用以下执行将 .xlsx 文件下载到我的项目资源中:
<execution>
<id>${id}</id>
<phase>generate-sources</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>${url}</url>
<outputFileName>${fileOutput}</outputFileName>
<outputDirectory>${licensesDir}/em</outputDirectory>
</configuration>
</execution>
但是,它生成的文件为空,无法读取。我知道我试图下载的文件不是问题,因为无论何时我直接下载它并手动将其复制到我的项目中,我都能读得很好,并且它可以与我的代码一起使用。它还可以下载其他文件类型。
然而,每当我尝试以这种方式下载时,在 pom.xml 中,生成的文件为空,我的代码在运行时会生成NullPointerException
异常。
有人可以提供一些帮助吗?
答案 0 :(得分:0)
您需要的是Maven下载插件:https://github.com/maven-download-plugin/maven-download-plugin
将插件添加到您的pom并按此执行目标:
<plugin>
<groupId>com.googlecode.maven-download-plugin</groupId>
<artifactId>download-maven-plugin</artifactId>
<version>1.3.0</version>
<executions>
<execution>
<id>install-jbpm</id>
<phase>pre-integration-test</phase>
<goals>
<goal>wget</goal>
</goals>
<configuration>
<url>http://downloads.sourceforge.net/project/jbpm/jBPM%203/jbpm-3.1.4/jbpm-3.1.4.zip</url>
<unpack>true</unpack>
<outputDirectory>${project.build.directory}/jbpm-3.1.4</outputDirectory>
<md5>df65b5642f33676313ebe4d5b69a3fff</md5>
</configuration>
</execution>
</executions>
</plugin>