-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moving plugin from gradle-utils complete
- Loading branch information
koneal
committed
Jun 24, 2015
1 parent
2f7b890
commit 4506b8a
Showing
6 changed files
with
59 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
bintray { | ||
user = bintrayUser | ||
key = bintrayKey | ||
publications = ['mavenStuff'] | ||
publications = ['maven'] | ||
|
||
dryRun = false //Whether to run this as dry-run, without deploying | ||
publish = false //If version should be auto published after an upload | ||
pkg { | ||
desc = pluginDescription | ||
repo = 'maven' | ||
name = 'gradle-syntastic-plugin' | ||
name = artifactId | ||
licenses = ['MIT'] | ||
labels = ['gradle', 'utilities'] | ||
labels = artifactTags.tokenize(' ') | ||
vcsUrl = syntasticVcsUrl | ||
version { | ||
name = project.version | ||
} | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
version=0.1 | ||
#manually specify key and user in the bintray.gradle | ||
#file. I don't know why. Figure it out later. | ||
bintrayUser= | ||
bintrayKey= | ||
group=com.scuilion.syntastic | ||
version=0.3.2 | ||
artifactTags=utility syntastic | ||
pluginDescription=Integrate syntastic with your gradle projects. | ||
syntasticVcsUrl=https\://github.com/scuilion/gradle-syntastic-plugin.git | ||
artifactId=gradle-syntastic-plugin | ||
gradle.publish.key= | ||
gradle.publish.secret= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
pluginBundle { | ||
website = 'scuilion.wordpress.com' | ||
vcsUrl = syntasticVcsUrl | ||
tags = artifactTags.tokenize(' ') | ||
plugins { | ||
syntasticPlugin { | ||
vcsUrl = syntasticVcsUrl | ||
id = group | ||
displayName = 'Syntastic' | ||
description = pluginDescription | ||
} | ||
} | ||
mavenCoordinates { | ||
groupId = 'com.scuilion.syntastic' | ||
artifactId = artifactId | ||
version = version | ||
} | ||
} |
File renamed without changes.