Skip to content

Commit 5d5ff42

Browse files
author
R. Tyler Croy
committed
Restructure gradle file to support the new package and artifact repo structure
1 parent 0fa162a commit 5d5ff42

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

build.gradle

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ buildscript {
99
dependencies { classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:0.5' }
1010
}
1111

12-
group = 'com.lookout'
13-
version = '2.2.0'
12+
group = 'com.github.jruby-gradle'
13+
version = '0.1.0'
1414

1515
if (System.env.RELEASE != '1') {
1616
version = "${version}-SNAPSHOT"
@@ -112,15 +112,16 @@ bintray {
112112
configurations = ['archives']
113113

114114
pkg {
115-
repo = 'jruby'
115+
userOrg = 'jruby-gradle'
116+
repo = 'plugins'
116117
name = 'jruby-gradle-plugin'
117118
labels = ['jruby']
118119

119120
version {
120121
name = project.version
121122
vcsTag = "v${project.version}"
122-
attributes = ['gradle-plugin' : 'com.lookout.jruby:com.lookout:jruby-gradle-plugin']
123-
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."
123+
attributes = ['gradle-plugin' : 'com.github.jruby-gradle:com.github.jruby-gradle:jruby-gradle-plugin']
124+
desc = 'The purpose of plugin is to encapsulate useful Gradle functionality for JRuby projects.'
124125

125126
}
126127
}

0 commit comments

Comments
 (0)