Skip to content
Snippets Groups Projects
build.gradle 395 B
Newer Older
  • Learn to ignore specific revisions
  • Georg Seibt's avatar
    Georg Seibt committed
    plugins {
        id 'java'
        id 'idea'
    }
    
    tasks.withType(JavaCompile) {
        options.encoding = 'UTF-8'
    }
    
    sourceSets {
        main {
            java {
                srcDir 'src'
            }
        }
    }
    
    repositories {
        mavenCentral()
    }
    
    dependencies {
        testCompile group: 'junit', name: 'junit', version: '4.11'
    }
    
    idea {
        module {
            downloadJavadoc = true
            downloadSources = true
        }
    }