File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed
Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -31,18 +31,26 @@ group = "ch.essmann.gradle"
3131version = 1
3232
3333pluginBundle {
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
3939gradlePlugin {
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}
You can’t perform that action at this time.
0 commit comments