Skip to content

Commit

Permalink
bump the library version to 0.1.6 and try again
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jul 3, 2024
1 parent 76089cd commit 8cdeb00
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
ext {
group = 'com.github.stephengold'
artifact = 'joltjni'
version = '0.1.5'
version = '0.1.6'
baseName = "${artifact}-${version}" // for artifacts
websiteUrl = 'https://github.com/stephengold/jolt-jni'
}
Expand Down Expand Up @@ -367,15 +367,15 @@ publishMavenPublicationToMavenLocal.doLast {
// which should be stored in ~/.gradle/gradle.properties

signing {
sign configurations.archives // JARs
sign publishing.publications.maven // .module and .pom
def signingKey = project.findProperty('signingKey')
def signingPassword = project.findProperty('signingPassword')
useInMemoryPgpKeys(signingKey, signingPassword)

sign configurations.archives
sign publishing.publications.maven
}
tasks.withType(Sign) {
onlyIf { project.hasProperty('signingKeyId') }

String signingKey = gradle.rootProject.findProperty('signingKey')
String signingPassword = gradle.rootProject.findProperty('signingPassword')
useInMemoryPgpKeys(signingKey, signingPassword)
onlyIf { project.hasProperty('signingKey') }
}
signMavenPublication.dependsOn('module')

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,6 @@ JNIEXPORT void JNICALL Java_com_github_stephengold_joltjni_Jolt_unregisterTypes
*/
JNIEXPORT jstring JNICALL Java_com_github_stephengold_joltjni_Jolt_versionString
(JNIEnv *pEnv, jclass) {
jstring result = pEnv->NewStringUTF("0.1.5");
jstring result = pEnv->NewStringUTF("0.1.6");
return result;
}

0 comments on commit 8cdeb00

Please sign in to comment.