Skip to content
Snippets Groups Projects
build.gradle 247 B
Newer Older
  • Learn to ignore specific revisions
  • COUETOUX Basile's avatar
    COUETOUX Basile committed
    plugins {
        id 'java'
    }
    
    version '1.0-SNAPSHOT'
    
    sourceCompatibility = 1.8
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testCompile group: 'junit', name: 'junit', version: '4.12'
        testCompile 'org.hamcrest:hamcrest-library:1.3'
    }