Skip to content

Commit

Permalink
Released 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Sten Roger Sandvik committed Jan 16, 2017
1 parent 07a7599 commit 9245897
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 24 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

Version 1.1.1 *(2017-01-16)*
----------------------------

* Plugin publishing problems (#188)

Version 1.1.0 *(2017-01-13)*
----------------------------

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#
# Current version
#
version = 1.2.0-SNAPSHOT
version = 1.1.1
1 change: 1 addition & 0 deletions gradle/buildscript.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ repositories {
dependencies {
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
classpath 'org.jfrog.buildinfo:build-info-extractor-gradle:4.4.0'
classpath 'com.gradle.publish:plugin-publish-plugin:0.9.6'
}
50 changes: 27 additions & 23 deletions gradle/publishing.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apply plugin: 'maven'
apply plugin: 'maven-publish'
apply plugin: 'com.jfrog.artifactory'
apply plugin: 'com.jfrog.bintray'
apply plugin: 'com.gradle.plugin-publish'

ext {
bintrayUser = resolveProperty( 'BINTRAY_USER', 'bintrayUser' )
Expand Down Expand Up @@ -38,31 +38,35 @@ artifactory {
}
}

bintray {
user = bintrayUser
key = bintrayKey
publications = ['mavenJava']
publish = true
pluginBundle {
website = 'https://github.com/srs/gradle-node-plugin'
vcsUrl = 'https://github.com/srs/gradle-node-plugin'

pkg {
repo = 'maven'
name = 'gradle-node-plugin'
desc = 'Gradle plugin for executing node scripts. Includes support for Yarn, Grunt and Gulp.'
websiteUrl = 'https://github.com/srs/gradle-node-plugin'
issueTrackerUrl = 'https://github.com/srs/gradle-node-plugin/issues'
vcsUrl = 'https://github.com/srs/gradle-node-plugin.git'
licenses = ['Apache-2.0']
labels = ['java', 'gradle', 'groovy', 'node', 'gulp', 'grunt']
publicDownloadNumbers = true
githubRepo = "srs/gradle-node-plugin"

version {
vcsTag = "v$project.version"
attributes = ['gradle-plugin': ["com.moowork.node:${project.group}:${project.name}",
"com.moowork.grunt:${project.group}:${project.name}",
"com.moowork.gulp:${project.group}:${project.name}"]]
plugins {
nodePlugin {
id = 'com.moowork.node'
displayName = 'Gradle Node Plugin'
description = 'Gradle plugin for executing node scripts.'
tags = ['java', 'gradle', 'node', 'yarn', 'npm']
}
gruntPlugin {
id = 'com.moowork.grunt'
displayName = 'Gradle Grunt Plugin'
description = 'Gradle pluign for executing grunt builds.'
tags = ['java', 'gradle', 'node', 'yarn', 'npm', 'grunt']
}
gulpPlugin {
id = 'com.moowork.gulp'
displayName = 'Gradle Gulp Plugin'
description = 'Gradle plugin for executing gulp builds.'
tags = ['java', 'gradle', 'node', 'yarn', 'npm', 'gulp']
}
}

mavenCoordinates {
groupId = 'com.moowork.gradle'
artifactId = 'gradle-node-plugin'
}
}

String resolveProperty( String envVarKey, String projectPropKey )
Expand Down

0 comments on commit 9245897

Please sign in to comment.