We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ccccf5f + 8741239 commit e6e9db5Copy full SHA for e6e9db5
1 file changed
build.gradle
@@ -215,6 +215,15 @@ project(":ui") {
215
}
216
217
javafx {
218
+ profiles {
219
+ linux {
220
+ category = 'Development'
221
+ bundleArguments = [
222
+ // for DEB bundles
223
+ 'email': 'wpilib@wpi.edu', // This is the email used for the deb maintainer field.
224
+ ]
225
+ }
226
227
appID = 'GRIP'
228
appName = 'GRIP'
229
mainClass = "edu.wpi.grip.ui.Main"
@@ -227,7 +236,7 @@ project(":ui") {
236
jvmArgs = ["-XX:-OmitStackTraceInFastThrow"]
237
238
mainClassName = javafx.mainClass
230
-
239
+
231
240
// The JavaFX plugin does not provide a way to change the installer artifact's name without changing the appName or appID,
232
241
// so instead, we simply rename the artifact to append the architecture (x86 or x64)
233
242
jfxDeploy.doLast {
0 commit comments