<properties>
<lib.dir>${basedir}/..</lib.dir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<plugin>
<artifactId>exec-maven-plugin</artifactId>
<groupId>org.codehaus.mojo</groupId>
<executions>
<execution>
<id>uncompress</id>
<phase>install</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>${basedir}/src/main/webapp/WEB-INF/lib/uncompress.bat</executable>
</configuration>
</execution>
</executions>
</plugin>
maven中配置Allatori
最新推荐文章于 2024-02-21 07:00:00 发布
该博客内容涉及Maven项目的配置细节,重点在于`exec-maven-plugin`插件的使用。在项目的`install`阶段,通过执行`uncompress.bat`脚本来解压缩文件,展示了一个具体的Maven插件配置实例。
1707

被折叠的 条评论
为什么被折叠?



