Nantes Université

Skip to content
Extraits de code Groupes Projets
build.gradle.kts 526 o
plugins {
    kotlin("jvm") version "1.9.21"
}

group = "org.example"
version = "1.0-SNAPSHOT"

repositories {
    /*
    maven {
        url = uri("http://nexus.dep-info.iut-nantes.univ-nantes.prive/repository/maven-central/")
        isAllowInsecureProtocol = true
    }
    */
    mavenCentral()
}

dependencies {
    testImplementation("org.junit.jupiter:junit-jupiter:5.11.2")
    testImplementation("org.junit.jupiter:junit-jupiter-params:5.11.2")
}

tasks.test {
    useJUnitPlatform()
}
kotlin {
    jvmToolchain(11)
}