view build.gradle @ 37:5e20f680d6d0

Merge with 1fa4b7b8d19f3d3c623c152023617b30982fc7f4
author sugi
date Sun, 07 Dec 2014 18:31:36 +0900
parents e6e5b45c921d
children 08a14d094d02
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/8991fa20f32f/'
    }
}

dependencies {
    compile 'com.glavsoft.viewer:tightvnc-jviewer:2.7.2'
    compile group: 'cr.ie.u_ryukyu.ac.jp', name: 'Alice', version: '1.0', ext: 'jar'
}

jar {
    manifest {
        attributes 'Main-Class': 'jp.ac.u_ryukyu.alicevnc.StartAliceVNC',
                   'Implementation-Version': "2.7.2",
                   'Implementation-Title': 'TightVNC',
                   'Implementation-Vendor': 'GlavSoft LLC.'
    }
    from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
    archiveName = 'AliceVNC.jar'
}