Skip to content

Commit

Permalink
Update build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsonlee committed May 4, 2022
1 parent d7601eb commit 17596ac
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ buildscript {
mavenLocal()
google()
mavenCentral()
jcenter()
maven { url 'https://plugins.gradle.org/m2/' }
}
dependencies {
Expand All @@ -31,13 +30,12 @@ allprojects { project ->
apply plugin: 'maven-publish'

group = 'com.didiglobal.booster'
version = findProperty('version') ?: '1.0.0-SNAPSHOT'
version = findProperty('version').with { it != DEFAULT_VERSION ? it : null } ?: '1.0.0-SNAPSHOT'

repositories {
mavenLocal()
google()
mavenCentral()
jcenter()
}

javadoc {
Expand Down

0 comments on commit 17596ac

Please sign in to comment.