mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-30 14:02:56 +01:00
update gradle to 5.1.1
This commit is contained in:
parent
3440485a51
commit
6c6afaf81a
@ -85,7 +85,7 @@ dependencies {
|
|||||||
// use pristine greendao instead of our custom version, since our custom jitpack-packaged
|
// use pristine greendao instead of our custom version, since our custom jitpack-packaged
|
||||||
// version contains way too much and our custom patches are in the generator only.
|
// version contains way too much and our custom patches are in the generator only.
|
||||||
implementation "org.greenrobot:greendao:2.2.1"
|
implementation "org.greenrobot:greendao:2.2.1"
|
||||||
implementation "org.apache.commons:commons-lang3:3.5"
|
implementation "org.apache.commons:commons-lang3:3.7"
|
||||||
implementation "org.cyanogenmod:platform.sdk:6.0"
|
implementation "org.cyanogenmod:platform.sdk:6.0"
|
||||||
implementation 'com.jaredrummler:colorpicker:1.0.2'
|
implementation 'com.jaredrummler:colorpicker:1.0.2'
|
||||||
// implementation project(":DaoCore")
|
// implementation project(":DaoCore")
|
||||||
@ -133,10 +133,10 @@ task pmd(type: Pmd) {
|
|||||||
xml.enabled = false
|
xml.enabled = false
|
||||||
html.enabled = true
|
html.enabled = true
|
||||||
xml {
|
xml {
|
||||||
destination "$project.buildDir/reports/pmd/pmd.xml"
|
destination file("$project.buildDir/reports/pmd/pmd.xml")
|
||||||
}
|
}
|
||||||
html {
|
html {
|
||||||
destination "$project.buildDir/reports/pmd/pmd.html"
|
destination file("$project.buildDir/reports/pmd/pmd.html")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -153,10 +153,10 @@ task findbugs(type: FindBugs) {
|
|||||||
xml.enabled = false
|
xml.enabled = false
|
||||||
html.enabled = true
|
html.enabled = true
|
||||||
xml {
|
xml {
|
||||||
destination "$project.buildDir/reports/findbugs/findbugs-output.xml"
|
destination file ("$project.buildDir/reports/findbugs/findbugs-output.xml")
|
||||||
}
|
}
|
||||||
html {
|
html {
|
||||||
destination "$project.buildDir/reports/findbugs/findbugs-output.html"
|
destination file ("$project.buildDir/reports/findbugs/findbugs-output.html")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,7 @@ buildscript {
|
|||||||
google()
|
google()
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:3.3.2'
|
classpath 'com.android.tools.build:gradle:3.4.0'
|
||||||
|
|
||||||
// NOTE: Do not place your application dependencies here; they belong
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
// in the individual module build.gradle files
|
// in the individual module build.gradle files
|
||||||
|
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,6 +1,6 @@
|
|||||||
#Sat Jan 20 22:13:05 EET 2018
|
#Thu May 23 21:50:12 CEST 2019
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.2-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
|
||||||
|
Loading…
Reference in New Issue
Block a user