Skip to content
This repository has been archived by the owner on Sep 2, 2019. It is now read-only.

Commit

Permalink
Upgrade dependencies versions: maoni-common => 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rm3l committed Mar 3, 2018
1 parent b5263e3 commit 5e2e110
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 20 deletions.
29 changes: 10 additions & 19 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ final homePath = System.properties['user.home']
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.6'
classpath 'com.android.tools.build:gradle:3.2.0-alpha04'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.0'
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -37,6 +38,7 @@ buildscript {
allprojects {
repositories {
jcenter()
google()
}
}

Expand All @@ -47,28 +49,17 @@ apply plugin: 'com.github.dcendents.android-maven'
targetCompatibility = '1.7'
sourceCompatibility = '1.7'

/*
* This is to mark some artifacts (such as Android's) as provided
* so that we don't get dependency conflicts
*/
configurations {
provided
compile.extendsFrom provided
}

group = 'org.rm3l'
version = '3.0.0-1'

dependencies {
compile 'org.rm3l:maoni-common:3.0.0'
implementation 'org.rm3l:maoni-common:6.0.0'
//We are interacting with Android components for sending emails
provided 'com.google.android:android:4.1.1.4'
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
}

task clean(type: Delete) {
delete rootProject.buildDir
compileOnly ('com.google.android:android:4.1.1.4') {
exclude group: 'org.json', module: 'json'
}
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
}

task generateSourcesJar(type: Jar) {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip

0 comments on commit 5e2e110

Please sign in to comment.