Skip to content

Commit

Permalink
update gradle plugin to 3.3.0, gradle 5.1.1, name artifact when AAR i…
Browse files Browse the repository at this point in the history
…s built to prevent unnecessary file renaming
  • Loading branch information
Brad Barnhill authored and quentin41500 committed Jan 23, 2019
1 parent 578a1f7 commit 67b3e4e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
task wrapper(type: Wrapper) {
wrapper {
//if you change this version you will need to run the 'gradlew wrapper' command twice from the command line to auto update the gradle cache
gradleVersion = "4.7"
gradleVersion = "5.1.1"
}
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
classpath 'com.android.tools.build:gradle:3.3.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}
Expand All @@ -17,7 +17,7 @@ allprojects {
repositories {
google()
jcenter()
// Here for convience when testing new releases
// Here for convenience when testing new releases
// maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}
}
Expand Down
2 changes: 1 addition & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
ext {
minSdkVersion = 16
compileSdkVersion = 27
compileSdkVersion = 28
targetSdkVersion = 27

hamcrestVersion = '1.3'
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase = GRADLE_USER_HOME
distributionPath = wrapper/dists
distributionUrl = https\://services.gradle.org/distributions/gradle-4.7-bin.zip
distributionUrl = https\://services.gradle.org/distributions/gradle-5.1.1-bin.zip
zipStoreBase = GRADLE_USER_HOME
zipStorePath = wrapper/dists
4 changes: 4 additions & 0 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,10 @@ android {
}
}

group = "com.github.prolificinteractive"
version = android.defaultConfig.versionName
archivesBaseName = 'material-calendarview'

dependencies {
implementation rootProject.ext.threeTenAbp
implementation rootProject.ext.supportV4
Expand Down

0 comments on commit 67b3e4e

Please sign in to comment.