Skip to content

Commit

Permalink
Update version to 5.0.0-beta.1 for release
Browse files Browse the repository at this point in the history
  • Loading branch information
renbinden committed Oct 23, 2022
1 parent 6a638da commit 867c043
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 @@ -6,16 +6,16 @@ plugins {
}

group = "com.dansplugins"
version = "5.0.0-SNAPSHOT"
version = "5.0.0-beta.1"

def repoUsername = ""
def repoPassword = ""
def propertiesFile = new File("repo.properties")
if (propertiesFile.exists()) {
def properties = new Properties()
properties.load(new FileInputStream(propertiesFile))
repoUsername = properties.getProperty("repo-username")
repoPassword = properties.getProperty("repo-password")
repoUsername = properties.getProperty("username")
repoPassword = properties.getProperty("password")
}

repositories {
Expand Down

0 comments on commit 867c043

Please sign in to comment.