comparison build.gradle @ 353:15061909f4da

add scripts
author nozomi
date Mon, 25 Sep 2017 19:52:20 +0900
parents 7a7d5d175c0c
children e13af3fd64cf
comparison
equal deleted inserted replaced
352:7193845c26cb 353:15061909f4da
44 repository(url: uri(mavenRepository)) 44 repository(url: uri(mavenRepository))
45 } 45 }
46 } 46 }
47 } 47 }
48 48
49 task LogupdateTest(type: Jar) {
50 exclude 'META-INF/*.RSA', 'META-INF/*.SF','META-INF/*.DSA'
51 baseName = "logupdateTest"
52 manifest {
53 attributes 'Main-Class': 'jp.ac.u_ryukyu.ie.cr.jungleNetwork.logupdate.LogupdateTest',
54 'Implementation-Title': 'LogupdateTet',
55 'Implementation-Description': 'Quickstart',
56 'Implementation-Version': version,
57 'Assembly-Date': new java.util.Date().toString()
49 58
59 }
60 from configurations.compile.collect { it.isDirectory() ? it : zipTree(it) } + sourceSets.test.output
61
62 with jar
63 }