crotwell / gradle-macappbundle

A Gradle Plugin to create a Mac OSX .app application and dmg based on the project.
Apache License 2.0
95 stars 33 forks source link

generated plist doesn't support types #19

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
1. configure macAppBunder with
javaExtras.put("StartOnMainThread", true)
2. generate plist

I expect the output to be
<key>StartOnMainThread</key>
<true/>

instead I see
<key>StartOnMainThread</key>
<string>true</string>

I'm using the latest build from maven on mac os x 10.9 with gradle 1.8

doValue(...)  in GenerateInfoPlistTask.groovy turns everything into a <string> 
element, and shouldn't. If I really want a string, I can make it a string 
myself.

Original issue reported on code.google.com by qti...@gmail.com on 14 Nov 2013 at 12:58

GoogleCodeExporter commented 9 years ago

Original comment by crotwell@seis.sc.edu on 21 Nov 2013 at 6:23

GoogleCodeExporter commented 9 years ago
done, will be in version 2.0

Original comment by crotwell@seis.sc.edu on 7 Feb 2014 at 7:44