Skip to content

Commit

Permalink
Help! Me!
Browse files Browse the repository at this point in the history
  • Loading branch information
JonathanxD committed Aug 13, 2021
1 parent 0b8bc73 commit 82fee5d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Kores-DSL/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ apply plugin: 'license'

apply plugin: 'maven-publish'

version '4.1.7.base'
version '4.1.8.base'

jar {
manifest {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ buildscript {
}

group 'com.github.koresframework'
version '4.1.7.base'
version '4.1.8.base'

apply from: 'gradle/common.gradle'
6 changes: 4 additions & 2 deletions gradle/common.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,10 @@ defaultTasks 'licenseFormat', 'build', 'test', 'jar', 'shadowJar'

sourceCompatibility = 16

def GITHUB_USERNAME = project.findProperty("USERNAME") ?: System.getenv("USERNAME")
def GITHUB_PAT = project.findProperty("TOKEN") ?: System.getenv("TOKEN")
def userNameProp = project.findProperty("USERNAME")
def patProp = project.findProperty("TOKEN")
def GITHUB_USERNAME = (userNameProp == null || userNameProp.isEmpty()) ? System.getenv("USERNAME") : userNameProp
def GITHUB_PAT = (patProp == null || patProp.isEmpty()) ? System.getenv("TOKEN") : patProp

repositories {
mavenCentral()
Expand Down

0 comments on commit 82fee5d

Please sign in to comment.