Skip to content

Commit

Permalink
Merge pull request #171 from liquibase/DAT-18457
Browse files Browse the repository at this point in the history
[DAT-18457] Fix JAVA 17 incompatibility
  • Loading branch information
vitaliimak committed Aug 19, 2024
2 parents ad57a34 + 93dc17c commit 83c95ec
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,6 @@
<artifactId>liquibase-core</artifactId>
<version>${liquibase.version}</version>
</dependency>
<dependency>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-commercial</artifactId>
<version>${liquibase.version}</version>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public boolean supports(String url) {

@Override
public int getPriority() {
return PRIORITY_DATABASE;
return PRIORITY_DATABASE + 101;
}

@Override
Expand Down

0 comments on commit 83c95ec

Please sign in to comment.