Skip to content

Commit

Permalink
dependency adjusts
Browse files Browse the repository at this point in the history
  • Loading branch information
mshima committed Apr 9, 2024
1 parent 470576a commit 5bf9f1d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions generators/liquibase/generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export default class extends BaseApplicationGenerator {
micronautLiquibase({ application, source }) {
if (application.buildToolMaven) {
source.addMavenDefinition?.({
properties: [{ property: 'liquibase-hibernate6.version', value: constants.versions.liquibaseHibernate6 }],
properties: [{ property: 'liquibase.version', value: application.javaDependencies.liquibaseVersion }],
dependencies: [
{
groupId: 'io.micronaut.liquibase',
Expand All @@ -21,7 +21,7 @@ export default class extends BaseApplicationGenerator {
{
groupId: 'org.liquibase.ext',
artifactId: 'liquibase-hibernate6',
version: '${liquibase-hibernate6.version}',
version: '${liquibase.version}',
scope: 'runtime',
exclusions: {
exclusion: {
Expand Down
2 changes: 0 additions & 2 deletions generators/micronaut/resources/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@ h2 = { module = 'com.h2database:h2', version = '2.2.224' }
liquibase = { module = 'org.liquibase:liquibase-core', version = '4.27.0' }

jakarta-validation = { module = 'jakarta.validation:jakarta.validation-api', version = '3.0.2' }

liquibase-hibernate6 = { module = 'org.liquibase.ext:liquibase-hibernate6', version = '4.27.0' }

0 comments on commit 5bf9f1d

Please sign in to comment.