view build.gradle @ 346:d46c42352e4f

change images position. It is under src/main/resources
author sugi
date Mon, 21 Apr 2014 19:57:44 +0900
parents c81dff5460b0
children bef74861969a
line wrap: on
line source

apply plugin: 'java'
apply plugin: 'eclipse'

sourceCompatibility = 1.6
targetCompatibility = 1.6
[compileJava, compileTestJava]*.options*.encoding = 'UTF-8'
version = '1.0'

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.+'
   	compile fileTree(dir: 'lib', include: '*.jar')
}

jar {
    manifest {
        attributes 'Implementation-Title': 'Gradle Quickstart', 'Implementation-Version': version
    }
    from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
	archiveName = 'Alice.jar'
}