Mercurial > hg > Applications > AliceVNC
view build.gradle @ 16:2a6e2c89b708
add hgignore
author | YU |
---|---|
date | Sat, 18 Oct 2014 22:08:26 +0900 |
parents | 87d90513e8f5 |
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' }