view build.gradle @ 369:0c24894db37e multicast

MulticastDataSegment's extends change from LocalDataSegment to RemoteDataSegment
author sugi
date Tue, 20 May 2014 15:00:21 +0900
parents d2e243ddcd68
children 9f6674e503df
line wrap: on
line source

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

sourceCompatibility = 1.8
targetCompatibility = 1.8
[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'
}