view build.gradle @ 15:87d90513e8f5

add ServerChange Message
author YU
date Sat, 18 Oct 2014 22:05:42 +0900
parents b175d5306b11
children 2f17d3fd2512
line wrap: on
line source

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

sourceCompatibility = 1.8
targetCompatibility = 1.8
version = '1.0'

repositories {    
    maven(){ 
        url 'http://www.cr.ie.u-ryukyu.ac.jp/hg/maven/raw-file/1904e559acaf/'
    }
}

dependencies {
    //compile 'com.glavsoft.viewer:tightvnc-jviewer:2.7.2'
}

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