Skip to content

Commit e5c0b8f

Browse files
committed
Add the publishing configuration for the core plugin
1 parent c42f709 commit e5c0b8f

File tree

1 file changed

+29
-1
lines changed

1 file changed

+29
-1
lines changed

core-plugin/build.gradle

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,32 @@ dependencies {
1212
exclude module: 'groovy-all'
1313
exclude group: 'org.codehaus.groovy'
1414
}
15-
}
15+
}
16+
17+
artifacts {
18+
archives sourcesJar
19+
}
20+
21+
bintray {
22+
user = project.bintrayUser
23+
key = project.bintrayKey
24+
publish = true
25+
dryRun = false
26+
configurations = ['archives']
27+
28+
pkg {
29+
userOrg = 'jruby-gradle'
30+
repo = 'plugins'
31+
name = 'jruby-gradle-core-plugin'
32+
labels = ['jruby']
33+
34+
version {
35+
name = project.version
36+
vcsTag = "v${project.version}"
37+
attributes = ['gradle-plugin': 'com.github.jruby-gradle.core:com.github.jruby-gradle:jruby-gradle-core-plugin']
38+
desc = 'This plugin provides some core dependency resolution for JRuby/Gradle'
39+
40+
}
41+
}
42+
}
43+
bintrayUpload.dependsOn assemble

0 commit comments

Comments
 (0)