Skip to content

Commit 883cb6c

Browse files
committed
update build.gradle
1 parent 23d08d9 commit 883cb6c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

build.gradle

+9-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ task codecov {
105105
description "Calls build and then jacocoTestReport"
106106
}
107107

108-
// custom jar for development
108+
// custom fat jar for development
109109
task devJar(type: Jar) {
110110
baseName = 'Jupiter-dev'
111111
manifest {
@@ -124,6 +124,14 @@ task devJar(type: Jar) {
124124
with jar
125125
}
126126

127+
// launch Jupiter GUI application
128+
task launch(type: JavaExec) {
129+
group = "Execution"
130+
description = "Run Jupiter GUI mode"
131+
classpath = sourceSets.main.runtimeClasspath
132+
main = "jupiter.Jupiter"
133+
}
134+
127135
// java source and target compatibility
128136
sourceCompatibility = 11
129137
targetCompatibility = 11

0 commit comments

Comments
 (0)