|
@@ -10,7 +10,8 @@
|
|
|
<parent>
|
|
<parent>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
|
- <version>3.4.0</version>
|
|
|
|
|
|
|
+ <version>3.5.7</version>
|
|
|
|
|
+ <type>pom</type>
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
</parent>
|
|
</parent>
|
|
|
<groupId>scot.carricksoftware</groupId>
|
|
<groupId>scot.carricksoftware</groupId>
|
|
@@ -41,14 +42,17 @@
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test -->
|
|
<!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-test -->
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
@@ -78,15 +82,13 @@
|
|
|
<artifactId>mariadb-java-client</artifactId>
|
|
<artifactId>mariadb-java-client</artifactId>
|
|
|
<scope>runtime</scope>
|
|
<scope>runtime</scope>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
+
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>org.sonarsource.scanner.maven</groupId>
|
|
<groupId>org.sonarsource.scanner.maven</groupId>
|
|
|
<artifactId>sonar-maven-plugin</artifactId>
|
|
<artifactId>sonar-maven-plugin</artifactId>
|
|
|
<version>5.0.0.4389</version>
|
|
<version>5.0.0.4389</version>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.springframework.boot</groupId>
|
|
|
|
|
- <artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
- </dependency>
|
|
|
|
|
|
|
+
|
|
|
|
|
|
|
|
<dependency>
|
|
<dependency>
|
|
|
<groupId>org.hibernate.validator</groupId>
|
|
<groupId>org.hibernate.validator</groupId>
|
|
@@ -115,6 +117,14 @@
|
|
|
<scope>test</scope>
|
|
<scope>test</scope>
|
|
|
</dependency>
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.liquibase.ext/liquibase-hibernate6 -->
|
|
|
|
|
+ <dependency>
|
|
|
|
|
+ <groupId>org.liquibase.ext</groupId>
|
|
|
|
|
+ <artifactId>liquibase-hibernate6</artifactId>
|
|
|
|
|
+ <version>5.0.1</version>
|
|
|
|
|
+ <scope>runtime</scope>
|
|
|
|
|
+ </dependency>
|
|
|
|
|
+
|
|
|
|
|
|
|
|
</dependencies>
|
|
</dependencies>
|
|
|
<build>
|
|
<build>
|
|
@@ -162,7 +172,6 @@
|
|
|
</plugin>
|
|
</plugin>
|
|
|
|
|
|
|
|
<plugin>
|
|
<plugin>
|
|
|
-
|
|
|
|
|
<groupId>org.liquibase</groupId>
|
|
<groupId>org.liquibase</groupId>
|
|
|
<artifactId>liquibase-maven-plugin</artifactId>
|
|
<artifactId>liquibase-maven-plugin</artifactId>
|
|
|
<version>4.31.1</version>
|
|
<version>4.31.1</version>
|
|
@@ -170,36 +179,10 @@
|
|
|
<changeLogFile>src/main/resources/db/changelog/master.xml</changeLogFile>
|
|
<changeLogFile>src/main/resources/db/changelog/master.xml</changeLogFile>
|
|
|
<outputChangeLogFile>src/main/resources/db/changelog/migration/1.0_init.postgresql.sql
|
|
<outputChangeLogFile>src/main/resources/db/changelog/migration/1.0_init.postgresql.sql
|
|
|
</outputChangeLogFile>
|
|
</outputChangeLogFile>
|
|
|
- <propertyFile>src/main/resources/liquibase.properties</propertyFile>
|
|
|
|
|
|
|
+ <propertyFile>src/main/resources/liquibase.properties</propertyFile>
|
|
|
</configuration>
|
|
</configuration>
|
|
|
-
|
|
|
|
|
- <dependencies>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.liquibase.ext</groupId>
|
|
|
|
|
- <artifactId>liquibase-hibernate</artifactId>
|
|
|
|
|
- <version>5.0.1</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>org.springframework.data</groupId>
|
|
|
|
|
- <artifactId>spring-data-jpa</artifactId>
|
|
|
|
|
- <version>3.0.2</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>io.hypersistence</groupId>
|
|
|
|
|
- <artifactId>hypersistence-utils-hibernate-60</artifactId>
|
|
|
|
|
- <version>3.9.4</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
- <dependency>
|
|
|
|
|
- <groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
- <artifactId>jackson-databind</artifactId>
|
|
|
|
|
- <version>2.14.2</version>
|
|
|
|
|
- </dependency>
|
|
|
|
|
-
|
|
|
|
|
- </dependencies>
|
|
|
|
|
-
|
|
|
|
|
</plugin>
|
|
</plugin>
|
|
|
|
|
|
|
|
-
|
|
|
|
|
</plugins>
|
|
</plugins>
|
|
|
</build>
|
|
</build>
|
|
|
|
|
|