Skip to content

Commit 024713c

Browse files
committed
Release 2.1.0-beta.6 with better metadata
1 parent c7f87b1 commit 024713c

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

build.gradle

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ plugins {
44
id 'org.ajoberstar.github-pages' version '1.2.0' apply false
55
id 'com.github.hierynomus.license' version '0.14.0' apply false
66
id 'io.ratpack.ratpack-java' version "1.6.1" apply false
7-
id 'com.gradle.plugin-publish' version '0.14.0' apply false
7+
id 'com.gradle.plugin-publish' version '1.1.0'
88
}
99

1010
buildScan {
@@ -27,7 +27,7 @@ allprojects {
2727
olderJRubyVersion = '9.4.1.0'
2828
spockVersion = "org.spockframework:spock-core:1.2-groovy-2.4"
2929
pluginExtraText = (version.contains('-alpha') || version.contains('-beta')) ?
30-
'(If you need a production-ready version of the JRuby/Gradle plugin use a 1.7.x release instead)': ''
30+
'(If you need a production-ready version of the JRuby/Gradle plugin use a 1.7.x release instead)' : ''
3131
}
3232
}
3333

@@ -78,7 +78,7 @@ subprojects {
7878
} else {
7979
versions '4.10.2', '5.3.1', '6.0.1', '6.7', '7.6.1'
8080

81-
if(project.name == 'jruby-gradle-core-plugin' ) {
81+
if (project.name == 'jruby-gradle-core-plugin') {
8282
versions '4.3'
8383
} else {
8484
versions '4.9'
@@ -87,8 +87,8 @@ subprojects {
8787

8888
dependsOn jar
8989
}
90-
91-
pluginBundle {
90+
91+
gradlePlugin {
9292
website = 'https://github.com/jruby-gradle/jruby-gradle-plugin' // 'http://jruby-gradle.org/'
9393
vcsUrl = 'https://github.com/jruby-gradle/jruby-gradle-plugin.git'
9494
}
@@ -103,7 +103,7 @@ subprojects {
103103
def reportName = (codenarcSourceSetTask.name - 'codenarc').uncapitalize()
104104
def ideReport = reports.add(org.gradle.api.reporting.internal.TaskGeneratedSingleFileReport, 'ide', reports.task)
105105
ideReport.enabled = true
106-
ideReport.destination = file( "${project.codenarc.reportsDir}/${reportName}.ide.txt")
106+
ideReport.destination = file("${project.codenarc.reportsDir}/${reportName}.ide.txt")
107107
}
108108

109109
tasks.withType(ValidateTaskProperties) { validateTaskProperties ->
@@ -112,7 +112,6 @@ subprojects {
112112
}
113113
}
114114

115-
116115
idea {
117116
module {
118117
downloadJavadoc = true

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version=2.1.0-beta.5
1+
version=2.1.0-beta.6
22
group=com.github.jruby-gradle
33
copyrightYear=2014-2023
44

0 commit comments

Comments
 (0)