16 lines
316 B
Groovy
16 lines
316 B
Groovy
plugins {
|
|
id 'org.jetbrains.kotlin.jvm' version '1.5.10'
|
|
}
|
|
|
|
group 'org.example'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib"
|
|
implementation 'junit:junit:4.13.1'
|
|
implementation 'org.junit.jupiter:junit-jupiter:5.7.0'
|
|
} |