Skip to content

Commit

Permalink
[Java] Fix Gradle warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjpt777 committed Dec 9, 2020
1 parent d9ed706 commit 01b2cb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Expand Up @@ -334,7 +334,7 @@ project(':agrona') {
repositories {
maven {
name = 'MavenCentral'
url = !isReleaseVersion ? ossrhSnapshotsRepoUrl : ossrhReleasesRepoUrl
url(!isReleaseVersion ? ossrhSnapshotsRepoUrl : ossrhReleasesRepoUrl)
credentials {
username = ossrhUsername
password = ossrhPassword
Expand Down Expand Up @@ -413,7 +413,7 @@ project(':agrona-agent') {
repositories {
maven {
name = 'MavenCentral'
url = !isReleaseVersion ? ossrhSnapshotsRepoUrl : ossrhReleasesRepoUrl
url(!isReleaseVersion ? ossrhSnapshotsRepoUrl : ossrhReleasesRepoUrl)
credentials {
username = ossrhUsername
password = ossrhPassword
Expand Down

0 comments on commit 01b2cb6

Please sign in to comment.