File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed
src/main/kotlin/dev/poolside/gradle/semanticversion Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ gradlePlugin {
3232 id = " dev.poolside.gradle.semantic-version"
3333 group = " dev.poolside.gradle.semanticversion"
3434 implementationClass = " dev.poolside.gradle.semanticversion.SemanticVersionPlugin"
35- version = " 0.1.0 "
35+ version = " 0.1.1 "
3636 displayName = " Poolside Semantic Version Plugin"
3737 }
3838 }
Original file line number Diff line number Diff line change @@ -6,6 +6,8 @@ image::semantic-version-plugin.svg[]
66
77== Import
88
9+ link:https://plugins.gradle.org/plugin/dev.poolside.gradle.semantic-version[Plugins Page]
10+
911[source,kotlin]
1012----
1113plugins {
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ class SemanticVersionPlugin : Plugin<Project> {
1010 override fun apply (project : Project ) {
1111 project.tasks.register(" semanticVersion" , SemanticVersionTask ::class .java) {
1212 this .description = " Determines and sets the semantic version"
13+ this .group = " publishing"
1314 }
1415 project.tasks.withType<JavaCompile > {
1516 this .dependsOn(" semanticVersion" )
You can’t perform that action at this time.
0 commit comments