We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23d08d9 commit 883cb6cCopy full SHA for 883cb6c
build.gradle
@@ -105,7 +105,7 @@ task codecov {
105
description "Calls build and then jacocoTestReport"
106
}
107
108
-// custom jar for development
+// custom fat jar for development
109
task devJar(type: Jar) {
110
baseName = 'Jupiter-dev'
111
manifest {
@@ -124,6 +124,14 @@ task devJar(type: Jar) {
124
with jar
125
126
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
+
135
// java source and target compatibility
136
sourceCompatibility = 11
137
targetCompatibility = 11
0 commit comments