Skip to content

Commit

Permalink
chore(deps): bump org.liquibase:liquibase-parent-pom from 0.4.5 to 0.…
Browse files Browse the repository at this point in the history
…5.0 (#666)

* chore(deps): bump org.liquibase:liquibase-parent-pom from 0.4.5 to 0.5.0

Bumps [org.liquibase:liquibase-parent-pom](https://github.com/liquibase/liquibase-parent-pom) from 0.4.5 to 0.5.0.
- [Release notes](https://github.com/liquibase/liquibase-parent-pom/releases)
- [Commits](liquibase/liquibase-parent-pom@v0.4.5...v0.5.0)

---
updated-dependencies:
- dependency-name: org.liquibase:liquibase-parent-pom
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* Add missing JUnit dependencies for surefire

---------


Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Florent Biville <[email protected]>
  • Loading branch information
dependabot[bot] and fbiville authored Nov 8, 2024
1 parent 218ad18 commit 042e6b0
Showing 1 changed file with 33 additions and 1 deletion.
34 changes: 33 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>org.liquibase</groupId>
<artifactId>liquibase-parent-pom</artifactId>
<version>0.4.5</version> <!-- Replace with the desired version -->
<version>0.5.0</version> <!-- Replace with the desired version -->
</parent>

<groupId>org.liquibase.ext</groupId>
Expand Down Expand Up @@ -49,6 +49,8 @@
<sonar.tests>src/test/groovy</sonar.tests>
<testcontainers.version>1.20.3</testcontainers.version>
<neo4j-driver.version>4.4.18</neo4j-driver.version>
<junit.version>5.11.3</junit.version>
<junit-platform.version>1.11.3</junit-platform.version>
</properties>

<scm>
Expand Down Expand Up @@ -125,6 +127,36 @@
<version>${jackson.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-suite</artifactId>
<version>${junit-platform.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-launcher</artifactId>
<version>${junit-platform.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
</dependencies>

<build>
Expand Down

0 comments on commit 042e6b0

Please sign in to comment.