view build.gradle @ 441:005616b38c00

remove unnecessary files
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Sun, 28 Sep 2014 17:28:01 +0900
parents bef74861969a
children d2e243ddcd68
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 {
   	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'
}