Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个项目,我需要从我们的 nexus 下载一组 zip 文件并解压缩它们。我已经设置并工作了依赖项和设置文件,但是如何将文件放到我的本地目录中以便可以解压缩它们?
/J
找到了一种方法:创建一个复制任务,例如:
<copy toDir="./dependencies/"> <fileset refId="local_build_deps" /> </copy>
唯一的问题是它复制的比我想要的多,但至少我得到了我需要的文件。欢迎任何有更好解决方案的人回复。