Skip to content

Commit 01bd19f

Browse files
author
R. Tyler Croy
committed
Include attributes on every version sent to bintray
1 parent 2c62e51 commit 01bd19f

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## v2.0.2
4+
5+
* More futzing with [bintray](http://bintray.com) release code
6+
37
## v2.0.1
48

59
* Add attributes to `build.gradle` for incorporating plugi into

build.gradle

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ buildscript {
99
}
1010

1111
group = 'com.lookout'
12-
version = '2.0.1'
12+
version = '2.0.2'
1313

1414
if (System.env.RELEASE != '1') {
1515
version = "${version}-SNAPSHOT"
@@ -65,9 +65,14 @@ bintray {
6565
repo = 'jruby'
6666
name = 'jruby-gradle-plugin'
6767
labels = ['jruby']
68-
attributes = [
69-
'gradle-plugin' : 'com.lookout.jruby:com.lookout:jruby-gradle-plugin',
70-
]
68+
69+
version {
70+
name = project.version
71+
vcsTag = "v${project.version}"
72+
attributes = ['gradle-plugin' : 'com.lookout.jruby:com.lookout:jruby-gradle-plugin']
73+
desc = "The purpose of plugin is to encapsulate useful Gradle functionality for JRuby projects. Use of this plugin replaces the need for both Bundler and Warbler in JRuby projects."
74+
75+
}
7176
}
7277
}
7378
bintrayUpload.dependsOn assemble

0 commit comments

Comments
 (0)