573b1ce056
Since January 15, 2020 Maven Central no longer supports insecure communication over plain HTTP and requires that all requests to the repository are encrypted over HTTPS.
28 lines
521 B
Groovy
28 lines
521 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
maven {
|
|
url = 'https://repo.maven.apache.org/maven2'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
testImplementation('org.junit.jupiter:junit-jupiter-api:5.5.0')
|
|
testRuntime('org.junit.jupiter:junit-jupiter-engine:5.5.0')
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
testLogging {
|
|
events "passed", "skipped", "failed", "standardOut", "standardError"
|
|
}
|
|
}
|
|
|
|
group = 'algorithm'
|
|
version = '1.0-SNAPSHOT'
|
|
description = 'java-algorithm'
|
|
sourceCompatibility = '1.8'
|