Skip to content

Commit 8a5756d

Browse files
Apply application plugin to JavaImportTool/build.gradle
So one can easily build an executable with 'gradle installDist' -> See also: https://docs.gradle.org/current/userguide/application_plugin.html
1 parent aa565ff commit 8a5756d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

JavaImportTool/build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
apply plugin: 'java'
22
apply plugin: 'eclipse'
3+
apply plugin: 'application'
34

45
repositories {
56
mavenCentral()
@@ -41,3 +42,5 @@ dependencies {
4142
fileTree (dir: pluginPath, includes: eclipseJars)
4243
)
4344
}
45+
46+
mainClassName = 'envision.java.importtool.Main'

0 commit comments

Comments
 (0)