├── .gitignore ├── LICENSE ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src └── main ├── groovy └── edu │ └── sc │ └── seis │ └── macAppBundle │ ├── CopyJavaStubTask.groovy │ ├── GenerateInfoPlistTask.groovy │ ├── MacAppBundlePlugin.groovy │ ├── MacAppBundlePluginExtension.groovy │ └── PkgInfoTask.groovy └── resources ├── META-INF └── gradle-plugins │ └── edu.sc.seis.macAppBundle.properties └── edu └── sc └── seis └── macAppBundle └── universalJavaApplicationStub /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crotwell/gradle-macappbundle/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crotwell/gradle-macappbundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crotwell/gradle-macappbundle/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crotwell/gradle-macappbundle/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crotwell/gradle-macappbundle/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crotwell/gradle-macappbundle/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crotwell/gradle-macappbundle/HEAD/gradlew.bat -------------------------------------------------------------------------------- /src/main/groovy/edu/sc/seis/macAppBundle/CopyJavaStubTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crotwell/gradle-macappbundle/HEAD/src/main/groovy/edu/sc/seis/macAppBundle/CopyJavaStubTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/edu/sc/seis/macAppBundle/GenerateInfoPlistTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crotwell/gradle-macappbundle/HEAD/src/main/groovy/edu/sc/seis/macAppBundle/GenerateInfoPlistTask.groovy -------------------------------------------------------------------------------- /src/main/groovy/edu/sc/seis/macAppBundle/MacAppBundlePlugin.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crotwell/gradle-macappbundle/HEAD/src/main/groovy/edu/sc/seis/macAppBundle/MacAppBundlePlugin.groovy -------------------------------------------------------------------------------- /src/main/groovy/edu/sc/seis/macAppBundle/MacAppBundlePluginExtension.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crotwell/gradle-macappbundle/HEAD/src/main/groovy/edu/sc/seis/macAppBundle/MacAppBundlePluginExtension.groovy -------------------------------------------------------------------------------- /src/main/groovy/edu/sc/seis/macAppBundle/PkgInfoTask.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crotwell/gradle-macappbundle/HEAD/src/main/groovy/edu/sc/seis/macAppBundle/PkgInfoTask.groovy -------------------------------------------------------------------------------- /src/main/resources/META-INF/gradle-plugins/edu.sc.seis.macAppBundle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crotwell/gradle-macappbundle/HEAD/src/main/resources/META-INF/gradle-plugins/edu.sc.seis.macAppBundle.properties -------------------------------------------------------------------------------- /src/main/resources/edu/sc/seis/macAppBundle/universalJavaApplicationStub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/crotwell/gradle-macappbundle/HEAD/src/main/resources/edu/sc/seis/macAppBundle/universalJavaApplicationStub --------------------------------------------------------------------------------