Skip to content

Commit

Permalink
fix neo4j liquibase dependencies (#25064)
Browse files Browse the repository at this point in the history
* fix neo4j liquibase dependencies

* fix neo4j dependency at gradle
  • Loading branch information
mshima authored Feb 2, 2024
1 parent 2f352fb commit eae3db9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion generators/liquibase/generator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -399,7 +399,7 @@ export default class LiquibaseGenerator extends BaseEntityChangesGenerator {
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>`,
},
Expand Down
2 changes: 1 addition & 1 deletion generators/liquibase/templates/gradle/liquibase.gradle.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dependencies {
// See: https://github.com/jhipster/generator-jhipster/pull/24241
implementation ("org.liquibase.ext:liquibase-neo4j:${liquibaseVersion}") {
exclude group: "org.neo4j.driver", module: "neo4j-java-driver"
exclude group: "org.slf4j", module: "slf4j-jdk14"
exclude group: "org.slf4j", module: "*"
}
implementation "org.springframework:spring-jdbc"
<%_ } _%>
Expand Down

0 comments on commit eae3db9

Please sign in to comment.