File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -11,15 +11,19 @@ buildscript {
1111}
1212
1313group ' com.ge.predix'
14- version ' 1.0.0 '
14+ version ' 1.1.1 '
1515
1616apply plugin : ' java'
1717apply plugin : ' idea'
1818apply plugin : ' application'
1919apply plugin : ' javafx-gradle-plugin'
2020
2121mainClassName = " com.ge.predix.mobile.ReferenceApplication"
22- applicationDefaultJvmArgs = [" -Djava.net.useSystemProxies=true" , " -Xdock:icon=src/main/resources/icon.png" , " -Xdock:name=\" MFL Reference Application\" " ]
22+ if (OperatingSystem . current(). isMacOsX()) {
23+ applicationDefaultJvmArgs = [" -Djava.net.useSystemProxies=true" , " -Xdock:icon=src/main/resources/icon.png" , " -Xdock:name=\" MFL Reference Application\" " ]
24+ } else {
25+ applicationDefaultJvmArgs = [" -Djava.net.useSystemProxies=true" ]
26+ }
2327def vendorName = " GE Digital"
2428
2529sourceCompatibility = 1.8
8589 if (OperatingSystem . current(). isMacOsX()) {
8690 bundler = " dmg"
8791 bundleArguments = [icon : ' src/main/resources/icon.icns' , signBundle : false ]
88- } else if (OperatingSystem . current(). isMacOsX ()) {
92+ } else if (OperatingSystem . current(). isWindows ()) {
8993 bundler = " exe"
9094 bundleArguments = [icon : ' src/main/resources/icon.ico' ]
9195 }
You can’t perform that action at this time.
0 commit comments