view build.gradle @ 353:bef74861969a

change dependency
author sugi
date Fri, 09 May 2014 14:54:28 +0900
parents d46c42352e4f
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'
}