liquibase using maven with two databases

后端 未结 1 1048
春和景丽
春和景丽 2021-01-06 12:43

i have the following structure to run one database from maven:


            org.liquibase
            

        
相关标签:
1条回答
  • 2021-01-06 13:13

    Perhaps you could try giving an <id> to each <execution>. Something like

    ...
    <execution>
       <id>charm</id>
       <phase>process-resources</phase>
       <configuration>
       ...
    </execution>
    <execution>
       <id>charm2</id>
       <phase>process-resources</phase>
       <configuration>
       ...
    </execution>
    ...
    

    If this does not work, you could update your question with the full stacktrace specifying the exact line that maven fails to validate the pom.

    0 讨论(0)
提交回复
热议问题