update spring boot and spring cloud

This commit is contained in:
Carsten Otto
2022-06-23 17:27:12 +02:00
parent c48e635944
commit 2b1ae9e95d
4 changed files with 7 additions and 3 deletions

View File

@@ -0,0 +1 @@
ALTER TABLE payments RENAME value TO val;

View File

@@ -11,7 +11,7 @@ dependencies {
implementation 'net.ltgt.gradle:gradle-errorprone-plugin:2.0.2'
implementation 'net.ltgt.gradle:gradle-nullaway-plugin:1.3.0'
implementation 'com.github.spotbugs.snom:spotbugs-gradle-plugin:5.0.8'
implementation 'org.springframework.boot:spring-boot-gradle-plugin:2.6.9'
implementation 'org.springframework.boot:spring-boot-gradle-plugin:2.7.1'
implementation 'com.adarshr:gradle-test-logger-plugin:3.2.0'
implementation 'info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.7.4'
}

View File

@@ -5,6 +5,7 @@ import de.cotto.lndmanagej.model.Payment;
import javax.annotation.Nullable;
import javax.persistence.CascadeType;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Index;
@@ -25,6 +26,8 @@ public class PaymentJpaDto {
@Nullable
private String hash;
private long timestamp;
@Column(name = "val")
private long value;
private long fees;

View File

@@ -3,7 +3,7 @@ plugins {
}
ext {
set('springCloudVersion', '2021.0.0')
set('springCloudVersion', '2021.0.3')
}
dependencies {
@@ -21,4 +21,4 @@ dependencies {
pitest {
testStrengthThreshold = 97
}
}