Skip to content

Commit

Permalink
[Gradle] Changed plugin id
Browse files Browse the repository at this point in the history
  • Loading branch information
OffRange committed May 27, 2024
1 parent bb8d0bc commit e3a366f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
`maven-publish`
}

group = "de.davis"
group = "io.github.offrange"
version = "0.2.0"

dependencies {
Expand All @@ -28,14 +28,14 @@ tasks.test {
@Suppress("UnstableApiUsage")
gradlePlugin {
website = "https://github.com/OffRange/git-semver-gradle-plugin"
vcsUrl = "https://github.com/OffRange/git-semver-gradle-plugin.git"
vcsUrl = "https://github.com/offrange/git-semver-gradle-plugin.git"
plugins {
create("versioning") {
displayName = "Gradle Git Semantic Versioning Plugin"
description =
"A Gradle plugin that automatically versions your project based on Git tags, following the Semantic Versioning 2.0 specification."
tags = listOf("git", "vcs", "semantic version", "semver", "versioning")
id = "de.davis.git-semantic-versioning"
id = "$group.git-semantic-versioning"
implementationClass = "de.davis.gradle.plugin.versioning.VersioningPlugin"
}
}
Expand Down

0 comments on commit e3a366f

Please sign in to comment.