mirror of
https://github.com/aljazceru/lnd-manageJ.git
synced 2026-01-30 03:04:38 +01:00
update spring boot and spring cloud
This commit is contained in:
@@ -0,0 +1 @@
|
||||
ALTER TABLE payments RENAME value TO val;
|
||||
@@ -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'
|
||||
}
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user