# HG changeset patch # User Tatsuki IHA # Date 1442558580 -32400 # Node ID c641988702b6aa3a7c33e8f24b20322116be6db0 # Parent 27f4414e9e6a2fed7a53b66cf5588e2ca755f34a Create run script usage $ gradle installAPP diff -r 27f4414e9e6a -r c641988702b6 build.gradle --- a/build.gradle Mon Sep 14 02:57:01 2015 +0900 +++ b/build.gradle Fri Sep 18 15:43:00 2015 +0900 @@ -1,5 +1,6 @@ apply plugin:'java' apply plugin: 'eclipse' +apply plugin: 'application' sourceCompatibility = 1.7 targetCompatibility = 1.7 @@ -126,3 +127,6 @@ versions[currentVersion] } +// set mainclass to Application Plugin +mainClassName = 'com.glavsoft.viewer.TreeViewer' +