# HG changeset patch # User YU # Date 1409215750 -32400 # Node ID 9973439e03ad8ff6d1761422cb69f3e8ab9a3389 first commit diff -r 000000000000 -r 9973439e03ad build.gradle --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/build.gradle Thu Aug 28 17:49:10 2014 +0900 @@ -0,0 +1,33 @@ +apply plugin: 'java' +apply plugin: 'eclipse' + +sourceCompatibility = 1.8 +targetCompatibility = 1.8 +version = '1.0' + +jar { + manifest { + attributes 'Implementation-Title': 'Gradle Quickstart', 'Implementation-Version': version + } +} + +repositories { + mavenCentral() +} + +dependencies { + compile group: 'commons-collections', name: 'commons-collections', version: '3.2' + testCompile group: 'junit', name: 'junit', version: '4.+' +} + +test { + systemProperties 'property': 'value' +} + +uploadArchives { + repositories { + flatDir { + dirs 'repos' + } + } +} diff -r 000000000000 -r 9973439e03ad src/main/java/jp/ac/u_ryukyu/alicevnc/StartAliceVNC.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/main/java/jp/ac/u_ryukyu/alicevnc/StartAliceVNC.java Thu Aug 28 17:49:10 2014 +0900 @@ -0,0 +1,11 @@ +package jp.ac.u_ryukyu.alicevnc; + +import alice.topology.node.TopologyNodeConfig; + +public class StartAliceVNC { + public static void main(String args[]){ + TopologyNodeConfig conf = new TopologyNodeConfig(args); + + } + +}