1

我有另一个包含静态内容(css、图像、JS 等)的项目,我需要将其复制到 jetty 的 web 根目录进行测试。在那个项目中,我输出了一个打包所有图像、CSS 等的 zip 文件。

我有几个针对不同客户的虚拟主机项目,我的问题是,如何将已经安装到 maven 存储库中的 zip 文件解压缩到 jetty web 根目录?

@更新:

Embedded error: Unable to download the artifact from any repository

Try downloading the file manually from the project website.

Then, install it using the command:
    mvn install:install-file -DgroupId= com.virtualhost -DartifactId=something
-Dversion=0.0.1 -Dpackaging=zip -Dfile=/path/to/file

Alternatively, if you host your own repository you can deploy the file there:
    mvn deploy:deploy-file -DgroupId=c com.virtualhost -DartifactId=something-D
version=0.0.1 -Dpackaging=zip -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[i
d]


  com.virtualhost:something:zip:0.0.1

沃尔特

4

1 回答 1

2

它应该比你可以在阶段dependency:unpack绑定。有关示例,prepare-package请参阅解包特定工件<type>zip</type>(在您的情况下,使用 a )。

于 2010-05-26T13:20:24.630 回答