sewy/build.gradle

31 lines
632 B
Groovy
Raw Normal View History

2022-01-28 12:49:54 +03:00
plugins {
id 'java'
id 'idea'
2022-01-28 12:49:54 +03:00
}
group 'me.bvn13'
version '1.0'
repositories {
mavenCentral()
}
dependencies {
// https://mvnrepository.com/artifact/org.slf4j/slf4j-api
implementation group: 'org.slf4j', name: 'slf4j-api', version: '1.7.35'
testImplementation 'ch.qos.logback:logback-classic:1.2.10'
2022-01-28 12:49:54 +03:00
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
testImplementation 'org.junit.jupiter:junit-jupiter-params:5.8.1'
2022-01-28 12:49:54 +03:00
}
test {
useJUnitPlatform()
}
tasks.withType(Test).configureEach {
maxParallelForks = 1
2022-01-28 12:49:54 +03:00
}