作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的路径“C:\ptc\Windchill_10.1\Windchill”中有一个 zip 文件。请谁能告诉我如何使用maven解压这个文件
最佳答案
Maven 有一个与 Ant 一起使用的插件。使用该插件,您可以创建 Ant-Tasks,此任务是一系列 xml 指令,您可以使用它们(实际上)执行您需要的任何操作。
一段可以作为灵感的代码:
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.8</version>
<executions>
<execution>
<phase>generate-resources</phase>
<configuration>
<tasks>
<echo message="unzipping file" />
<unzip src="output/inner.zip" dest="output/" />
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
关于maven - 如何在maven中使用pom.xml解压任意文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17487023/
我是一名优秀的程序员,十分优秀!