added required price, see #6

This commit is contained in:
Jottyfan
2024-02-23 15:36:37 +01:00
parent 72952b9c7b
commit e20c24d006
7 changed files with 88 additions and 6 deletions

View File

@ -8,7 +8,7 @@ plugins {
}
group = 'de.jottyfan.camporganizer'
version = '0.7.0'
version = '0.7.1'
description = """CampOrganizer2"""
@ -89,6 +89,12 @@ dependencies {
testImplementation 'org.springframework.security:spring-security-test'
}
configurations {
runtime {
exclude(group = "commons-logging", module = "commons-logging")
}
}
test {
useJUnitPlatform()
}