forked from crotwell/gradle-macappbundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
54 lines (41 loc) · 1.18 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
plugins {
id 'maven-publish'
id 'com.gradle.plugin-publish' version '0.9.1'
id 'eclipse'
id 'groovy'
}
group = "edu.sc.seis"
version = "2.1.6"
sourceCompatibility = 1.7
targetCompatibility = 1.7
dependencies {
compile gradleApi()
compile localGroovy() //not needed for Java plugins
// other dependencies that your plugin requires
}
publishing {
publications {
mavenJava(MavenPublication) {
from components.java
}
}
}
pluginBundle {
website = 'https://github.com/crotwell/gradle-macappbundle'
vcsUrl = 'https://github.com/crotwell/gradle-macappbundle.git'
description = 'A Gradle Plugin to create a Mac OSX .app application based on the project. '
plugins {
macappbundle {
id = 'edu.sc.seis.macAppBundle'
displayName = 'MacApp Bundle plugin'
tags = [ 'gradle', 'plugin', 'macappbundle', 'dmg', 'osx']
}
}
// pluginImplementationClass 'edu.sc.seis.gradle.macAppBundle.MacAppBundlePlugin'
// pluginLicenses 'Apache-2.0'
// authorId 'crotwell'
// authorName 'Philip Crotwell'
// authorEmail '[email protected]'
// projectInceptionYear '2012'
// done() // do not omit this
}