Skip to content
Snippets Groups Projects
build.gradle 363 B
Newer Older
  • Learn to ignore specific revisions
  • NAVES Guyslain's avatar
    NAVES Guyslain committed
    plugins {
        id 'java'
        id 'application'
    }
    
    application {
    
    NAVES Guyslain's avatar
    NAVES Guyslain committed
        mainClass = 'fr.univamu.Main'
    
    NAVES Guyslain's avatar
    NAVES Guyslain committed
    }
    
    group 'org.example'
    version '1.0-SNAPSHOT'
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
        testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
    }
    
    test {
        useJUnitPlatform()
    }