view build.gradle @ 350:388e7d4b0624

heart beat may finish.
author sugi
date Tue, 22 Apr 2014 04:21:22 +0900
parents d46c42352e4f
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'
}