多个安装:单个pom.xml中的安装文件

多个安装:单个pom.xml中的安装文件,第1张

多个安装:单个pom.xml中的安装文件

我可以想象这样的事情会起作用(它将在每个版本中安装):

<build>    <plugins>        <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-install-plugin</artifactId> <executions>     <execution>         <id>inst_1</id>         <phase>initialize</phase>         <goals>  <goal>install-file</goal>         </goals>         <configuration>  <!-- config for file 1 -->         </configuration>     </execution>     <execution>         <id>inst_2</id>         <phase>initialize</phase>         <goals>  <goal>install-file</goal>         </goals>         <configuration>  <!-- config for file 2 -->         </configuration>     </execution>     <!-- execution file 3... --> </executions>        </plugin>     </plugins></build>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5461962.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存