Hi together,
I am trying to configure the maven plugin (3.5.3) to run two different configurations on the same DB (but different user and different changelog).
My current code for a single configuration looks like this:
Any suggestions?
Thanks in advance :)
I am trying to configure the maven plugin (3.5.3) to run two different configurations on the same DB (but different user and different changelog).
My current code for a single configuration looks like this:
<plugin>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-maven-plugin</artifactId>
<version>3.5.3</version>
<configuration>
<changeLogFile>
${basedir}/src/main/resources/db/changelog_1.xml
</changeLogFile>
<driver>oracle.jdbc.driver.OracleDriver</driver>
<url>jdbc:oracle:thin:@localhost:1521:xe</url>
<username>USER</username>
<password>PASSWORD</password>
</configuration>
<dependencies>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc7</artifactId>
<version>12.1.0.2.0</version>
</dependency>
</dependencies>
</plugin>
Any suggestions?
Thanks in advance :)