Skip to content

Commit

Permalink
Finish 0.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
theshadowco committed Jan 14, 2024
2 parents 2bf6072 + 503c254 commit 404c71f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 10 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
`java-library`
`maven-publish`
jacoco
signing
id("org.sonarqube") version "4.4.1.3373"
id("org.cadixdev.licenser") version "0.6.1"
id("me.qoomon.git-versioning") version "6.4.3"
Expand Down Expand Up @@ -122,6 +123,15 @@ license {
exclude("**/*.xml")
}

signing {
val signingInMemoryKey: String? by project // env.ORG_GRADLE_PROJECT_signingInMemoryKey
val signingInMemoryPassword: String? by project // env.ORG_GRADLE_PROJECT_signingInMemoryPassword
if (signingInMemoryKey != null) {
useInMemoryPgpKeys(signingInMemoryKey, signingInMemoryPassword)
sign(publishing.publications)
}
}

publishing {
repositories {
maven {
Expand Down
2 changes: 0 additions & 2 deletions jitpack.yml

This file was deleted.

0 comments on commit 404c71f

Please sign in to comment.