其他分享
首页 > 其他分享> > maven中配置Allatori

maven中配置Allatori

作者:互联网

<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>

标签:src,bat,basedir,uncompress,Allatori,配置,maven,exec
来源: https://blog.csdn.net/wang_Sun2X/article/details/111225058