view build.gradle @ 14:b175d5306b11

build.gradle
author YU
date Tue, 07 Oct 2014 15:52:31 +0900
parents e68415fd0a1f
children 87d90513e8f5
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'
}