Files

11 lines
307 B
Groovy
Raw Permalink Normal View History

apply plugin :'java'
//apply plugin : 'application'
2024-01-15 18:57:48 +00:00
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
dependencies{
implementation group: 'joda-time', name: 'joda-time', version: '2.9.9'
testImplementation group: 'junit', name: 'junit', version: '4.12'
}