Skip to content

Commit 837a4c6

Browse files
committed
Fix Sonatype integration and bump version to 3.4.0-SNAPSHOT
1 parent 241351a commit 837a4c6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

SpellChecker/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ publishing {
5858
url = isReleaseVersion ? releasesRepoUrl : snapshotsRepoUrl
5959
credentials { // Credentials usually kept in user's .gradle/gradle.properties
6060
// We must defensively check for these properties so Travis CI build works
61-
username = project.hasProperty('ossrhUsername') ? ossrhUsername : 'unknown'
62-
password = project.hasProperty('ossrhPassword') ? ossrhPassword : 'unknown'
61+
username = project.hasProperty('ossrhToken') ? ossrhToken : 'unknown'
62+
password = project.hasProperty('ossrhTokenPassword') ? ossrhTokenPassword : 'unknown'
6363
}
6464
}
6565
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Note that Maven- and signing-related properties are in <maven-home>/gradle.properties
22
javaLanguageVersion=8
3-
version=3.3.2-SNAPSHOT
3+
version=3.4.0-SNAPSHOT
44

55
# Ugh, see https://github.com/gradle/gradle/issues/11308
66
systemProp.org.gradle.internal.publish.checksums.insecure=true

0 commit comments

Comments
 (0)