Skip to content

Commit

Permalink
fix liquibase error on missing dir
Browse files Browse the repository at this point in the history
  • Loading branch information
Hellblazer committed Nov 1, 2023
1 parent f61ea27 commit 862db5c
Showing 1 changed file with 26 additions and 19 deletions.
45 changes: 26 additions & 19 deletions model/pom.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.salesforce.apollo</groupId>
Expand Down Expand Up @@ -63,6 +64,11 @@
</dependencies>
<build>
<plugins>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
Expand Down Expand Up @@ -166,7 +172,8 @@
<configuration>
<jdbc>
<driver>org.h2.Driver</driver>
<url>jdbc:h2:file:${project.build.directory}/data/jooq;IGNORECASE=true;DB_CLOSE_ON_EXIT=FALSE</url>
<url>jdbc:h2:file:${project.build.directory}/data/jooq;IGNORECASE=true;DB_CLOSE_ON_EXIT=FALSE
</url>
<user>bootstrap</user>
<password>${db.password}</password>
</jdbc>
Expand Down Expand Up @@ -203,14 +210,14 @@
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.apache.maven.plugins
</groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-antrun-plugin
</artifactId>
maven-antrun-plugin
</artifactId>
<versionRange>
[1.3,)
</versionRange>
[1.3,)
</versionRange>
<goals>
<goal>run</goal>
</goals>
Expand All @@ -222,14 +229,14 @@
<pluginExecution>
<pluginExecutionFilter>
<groupId>
org.apache.maven.plugins
</groupId>
org.apache.maven.plugins
</groupId>
<artifactId>
maven-clean-plugin
</artifactId>
maven-clean-plugin
</artifactId>
<versionRange>
[2.5,)
</versionRange>
[2.5,)
</versionRange>
<goals>
<goal>clean</goal>
</goals>
Expand All @@ -242,11 +249,11 @@
<pluginExecutionFilter>
<groupId>org.liquibase</groupId>
<artifactId>
liquibase-maven-plugin
</artifactId>
liquibase-maven-plugin
</artifactId>
<versionRange>
[4.8.0,)
</versionRange>
[4.8.0,)
</versionRange>
<goals>
<goal>update</goal>
</goals>
Expand All @@ -262,4 +269,4 @@
</plugins>
</pluginManagement>
</build>
</project>
</project>

0 comments on commit 862db5c

Please sign in to comment.