crotwell / gradle-macappbundle

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

src/dist not copied into app #42

Closed voxoid0 closed 7 years ago

voxoid0 commented 8 years ago

The gradle application plugin copies src/dist files into the distribution/lib folder. It's be really super nice if macappbundle did the same. Then we can distribute to Windows and Mac with the same src file structure. For now I need to create my own task to run after createApp to do so.

crotwell commented 8 years ago

Seems like being compatible with the application plugin is a good idea, but from what I can tell from the gradle application and distribution plugin docs, it looks like the contents of src/main/dist would be copied into the top level of the distribution, so would appear directly in side the .dmg instead of in the lib folder. Also I am a little unclear as to why this would effect things in the lib folder? Am I misunderstanding?