Skip to content

Commit e6e9db5

Browse files
committed
Merge pull request #442 from PaulaRudy/issue430
Fixed maintainer email address field to stop Lintian's complaints.
2 parents ccccf5f + 8741239 commit e6e9db5

1 file changed

Lines changed: 10 additions & 1 deletion

File tree

build.gradle

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,6 +215,15 @@ project(":ui") {
215215
}
216216

217217
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+
}
218227
appID = 'GRIP'
219228
appName = 'GRIP'
220229
mainClass = "edu.wpi.grip.ui.Main"
@@ -227,7 +236,7 @@ project(":ui") {
227236
jvmArgs = ["-XX:-OmitStackTraceInFastThrow"]
228237
}
229238
mainClassName = javafx.mainClass
230-
239+
231240
// The JavaFX plugin does not provide a way to change the installer artifact's name without changing the appName or appID,
232241
// so instead, we simply rename the artifact to append the architecture (x86 or x64)
233242
jfxDeploy.doLast {

0 commit comments

Comments
 (0)