Skip to content

Commit ac8ac03

Browse files
committed
Adjusted Gradle plugin description
1 parent 50836a1 commit ac8ac03

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

build.gradle.kts

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,26 @@ group = "ch.essmann.gradle"
3131
version = 1
3232

3333
pluginBundle {
34-
website = "https://git.essmann.ch/gradle/check-java-gradle-plugin"
35-
vcsUrl = "ssh://[email protected]:30001/gradle/check-java-gradle-plugin.git"
36-
tags = listOf("java", "version")
34+
website = "https://github.com/brunoessmann/check-java-version-gradle-plugin"
35+
vcsUrl = "https://github.com/brunoessmann/check-java-version-gradle-plugin.git"
36+
tags = listOf("java", "check", "version")
3737
}
3838

3939
gradlePlugin {
4040
plugins {
4141
create("checkjava") {
4242
id = "ch.essmann.gradle.check-java-version"
4343
implementationClass = "ch.essmann.gradle.checkjava.CheckJavaVersionPlugin"
44-
displayName = "Checks that Gradle is running with the correct Java version"
45-
description = "Checks the Java version before starting the Gradle build"
44+
displayName = "A plugin that ensures that the Java version used to execute your Gradle build is in a certain range."
45+
description = """
46+
This plugin checks the Java version your Gradle build is running with.
47+
48+
If the version is lower than the required minimum version or it exceeds the maximum version accepted,
49+
then the build is aborted with an friendly, easy to spot error message pointing towards the problem.
50+
51+
This should help to avoid having to dig through the build output to find only to find an unsupported class
52+
file version error messages buried somehere in the output due to a bad Java runtime version.
53+
""".trimIndent()
4654
}
4755
}
4856
}

0 commit comments

Comments
 (0)