Skip to content

Commit

Permalink
Upgrade to 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pavankjadda committed Nov 20, 2020
1 parent 7227825 commit 71c6049
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 26 deletions.
19 changes: 12 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,21 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.2.RELEASE</version>
<version>2.4.0</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.pj</groupId>
<artifactId>liquibasedemo</artifactId>
<version>2.1.0</version>
<version>2.2.0</version>
<name>liquibasedemo</name>
<description>Liquibase Demo project with Spring Boot and Spring Data</description>

<properties>
<spring-boot.version>2.3.2.RELEASE</spring-boot.version>
<hibernate.version>5.4.18.Final</hibernate.version>
<liquibase-core.version>4.0.0</liquibase-core.version>
<liquibase-maven-plugin.version>4.0.0</liquibase-maven-plugin.version>
<liquibase-hibernate5.version>4.0.0</liquibase-hibernate5.version>
<spring-boot.version>2.4.0</spring-boot.version>
<hibernate.version>5.4.24.Final</hibernate.version>
<liquibase-core.version>4.2.0</liquibase-core.version>
<liquibase-maven-plugin.version>4.2.0</liquibase-maven-plugin.version>
<liquibase-hibernate5.version>4.1.1</liquibase-hibernate5.version>
<validation-api.version>2.0.1.Final</validation-api.version>
<javassist.version>3.27.0-GA</javassist.version>
<jaxb-api.version>2.4.0-b180830.0359</jaxb-api.version>
Expand Down Expand Up @@ -84,6 +84,11 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<profiles>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package com.pj.liquibasedemo;


import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit.jupiter.SpringExtension;

@ExtendWith(SpringExtension.class)
@SpringBootTest
class LiquibaseTestApplicationTests
{
@Test
void contextLoads()
{
System.out.println("Context loaded");
}
}

This file was deleted.

0 comments on commit 71c6049

Please sign in to comment.