gpt4 book ai didi

maven - 在pom.xml中找到ID为default的重复执行

转载 作者:行者123 更新时间:2023-12-04 13:22:24 25 4
gpt4 key购买 nike

如何解决重复执行的问题。

'build.pluginManagement.plugins.plugin[org.flywaydb:flyway-maven-plugin].executions.execution.id' must be unique but found duplicate execution with id default



这是源代码:
             <plugin>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-maven-plugin</artifactId>
<version>4.0.1</version>
<configuration>
<user>tkmadmin</user>
<password>ticketmaster</password>
</configuration>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>clean</goal>
</goals>
</execution>
<execution>
<phase>generate-resources</phase>
<goals>
<goal>migrate</goal>
</goals>
</execution>
</executions>
</plugin>

最佳答案

在您的<id>中添加明确的<execution>:

<execution>
<id>flyway-clean</id>
...
<execution>
<id>flyway-migrate</id>

引用: Maven / POM Reference, Plugins:

  • executions: ...

    ...
  • id: Self explanatory. It specifies this execution block between all of the others. When the phase is run, it will be shown in the form: [plugin:goal execution: id].

关于maven - 在pom.xml中找到ID为default的重复执行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37654149/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com