Skip to content

Commit

Permalink
3.3.1-SNAPSHOT start
Browse files Browse the repository at this point in the history
  • Loading branch information
hadleynet committed Sep 6, 2024
1 parent 995cf2f commit 76f2925
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ artifacts {
}

def mavenGroup = 'org.mitre.synthea'
def mavenVersion = '3.3.0'
def mavenVersion = '3.3.1-SNAPSHOT'

publishing {
publications {
Expand Down Expand Up @@ -411,8 +411,8 @@ publishing {
def releaseUrl = 'https://oss.sonatype.org/service/local/staging/deploy/maven2/'
url mavenVersion.endsWith('SNAPSHOT') ? snapshotUrl : releaseUrl
credentials {
def user = project.hasProperty('sonatypeUsername') ? sonatypeUsername : ''
def pw = project.hasProperty('sonatypePassword') ? sonatypePassword : ''
def user = project.hasProperty('ossToken') ? ossToken : ''
def pw = project.hasProperty('ossTokenPassword') ? ossTokenPassword : ''
username user
password pw
}
Expand Down

0 comments on commit 76f2925

Please sign in to comment.