This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!description="Change .show() and .hide() calls | |
on Dialog and JDialog | |
into .setVisible(true) and .setVisible(false) calls, respectively."> | |
$s.show() :: $s instanceof java.awt.Dialog | |
=> $s.setVisible(true) | |
;; | |
$s.hide() :: $s instanceof java.awt.Dialog |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pipeline { | |
environment { | |
/* | |
* Maybe maven 3.5.0 is why the build hangs sometimes? | |
* I'm trying 3.0.5 which is what's in NetBeans. | |
* That fixed it. | |
*/ | |
mvnHome = tool 'maven-3.0.5' | |
jenkins2MvnVersion = 'maven-3.5.0' |