comparison build.gradle @ 36:e6e5b45c921d

set manifest
author sugi
date Sun, 07 Dec 2014 18:30:44 +0900
parents 6f5986d8ecd5
children 08a14d094d02
comparison
equal deleted inserted replaced
34:aace9df1462e 36:e6e5b45c921d
17 compile group: 'cr.ie.u_ryukyu.ac.jp', name: 'Alice', version: '1.0', ext: 'jar' 17 compile group: 'cr.ie.u_ryukyu.ac.jp', name: 'Alice', version: '1.0', ext: 'jar'
18 } 18 }
19 19
20 jar { 20 jar {
21 manifest { 21 manifest {
22 attributes 'Implementation-Title': 'Gradle Quickstart', 'Implementation-Version': version 22 attributes 'Main-Class': 'jp.ac.u_ryukyu.alicevnc.StartAliceVNC',
23 'Implementation-Version': "2.7.2",
24 'Implementation-Title': 'TightVNC',
25 'Implementation-Vendor': 'GlavSoft LLC.'
23 } 26 }
24 from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } 27 from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
25 archiveName = 'AliceVNC.jar' 28 archiveName = 'AliceVNC.jar'
26 } 29 }