Skip to content

Commit

Permalink
cleanup readme for 2.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
crotwell committed Jul 21, 2017
1 parent 6672cac commit 22c0fd7
Showing 1 changed file with 2 additions and 27 deletions.
29 changes: 2 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,41 +1,16 @@
A [Gradle](http://www.gradle.org) Plugin to create a Mac OSX .app application and dmg based on the project.

**Version 2.1.6 released 4 April 2016.**
**Version 2.1.7 released 21 July 2017.**

Now available via the Gradle Plugin Portal. Please see:
http://plugins.gradle.org/plugin/edu.sc.seis.macAppBundle

To add to a gradle project, add this to build.gradle and run **gradle createApp** or **gradle createDmg**. The first should work on most systems, the second will only work on Mac OSX as it uses hdiutils which is a Mac-only application. Also see the [Wiki](https://github.com/crotwell/gradle-macappbundle/wiki/Intro) for more information.

As of version 1.0.9, the
groupId and artifactId changed to edu.sc.seis.gradle and macappbundle.

For gradle 2.1 or later:
```
plugins {
id "edu.sc.seis.macAppBundle" version "2.1.6"
id "edu.sc.seis.macAppBundle" version "2.1.7"
}
```

or for earlier versions of Gradle (which may no longer work, but... ):

```
apply plugin: 'edu.sc.seis.macAppBundle'
macAppBundle {
mainClassName = "com.example.myApp.Start"
}
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.edu.sc.seis:macAppBundle:2.1.5"
}
}
```

0 comments on commit 22c0fd7

Please sign in to comment.