Implemented transactions record

This commit is contained in:
2021-08-13 17:34:19 +02:00
parent 415fda3d64
commit 4d94e3ad5b
12 changed files with 178 additions and 93 deletions

18
build.gradle Normal file
View File

@@ -0,0 +1,18 @@
apply plugin: 'idea'
apply plugin: 'java'
repositories {
maven {
url 'https://repo.maven.apache.org/maven2'
name 'Maven Central'
}
}
test {
useJUnitPlatform()
}
dependencies {
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.7.2'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.7.2'
}