Skip to content

Commit

Permalink
apply convention plugin to root
Browse files Browse the repository at this point in the history
  • Loading branch information
nefilim committed Jan 18, 2022
1 parent ae9edfa commit ff72562
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
alias(libs.plugins.dependencyCheck)
alias(libs.plugins.githubRelease)
`maven-publish`
signing
id("build-conventions")
}

repositories {
Expand Down Expand Up @@ -49,7 +49,7 @@ githubRelease {
// You get this from your user settings > developer settings > Personal Access Tokens
owner("nefilim") // default is the last part of your group. Eg group: "com.github.breadmoirai" => owner: "breadmoirai"
repo("kjwt") // by default this is set to your project name
tagName("v${project.version}") // by default this is set to "v${project.version}"
tagName(semver.versionTagName()) // by default this is set to "v${project.version}"
targetCommitish("main") // by default this is set to "master"
body(changelog())
draft(false) // by default this is false
Expand Down

0 comments on commit ff72562

Please sign in to comment.