Skip to content

Commit

Permalink
🎉release 0.9.7
Browse files Browse the repository at this point in the history
  • Loading branch information
ohmae committed Jul 22, 2023
1 parent 20edcba commit 8af2536
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion buildSrc/src/main/java/build/ProjectProperties.kt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ object ProjectProperties {

private const val versionMajor: Int = 0
private const val versionMinor: Int = 9
private const val versionPatch: Int = 6
private const val versionPatch: Int = 7
const val versionName: String = "$versionMajor.$versionMinor.$versionPatch"

object Url {
Expand Down
3 changes: 3 additions & 0 deletions buildSrc/src/main/java/build/Publishing.kt
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ fun Project.publishingSettings() {
signing {
sign(publishing.publications.getByName("mavenJava"))
}
tasks.named("signMavenJavaPublication") {
dependsOn("jar")
}
}

private fun appendDependency(parentNode: Node, groupId: String, artifactId: String, version: String, scope: String) {
Expand Down

0 comments on commit 8af2536

Please sign in to comment.