mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge.git
synced 2025-01-10 09:01:55 +01:00
Replace greendao with 2.2.0-fyg2
This commit is contained in:
parent
906a807d15
commit
27d5f5c56d
@ -6,9 +6,7 @@ archivesBaseName = 'gadgetbridge-daogenerator'
|
||||
//version = '0.9.2-SNAPSHOT'
|
||||
|
||||
dependencies {
|
||||
// implementation 'org.greenrobot:greendao-generator:2.2.0'
|
||||
// implementation project(":DaoGenerator")
|
||||
implementation 'com.github.Freeyourgadget:greendao:1998d7cd2d21f662c6044f6ccf3b3a251bbad341'
|
||||
implementation 'nodomain.freeyourgadget.greendao:greendao-generator:2.2.0-fyg2'
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
|
@ -230,8 +230,8 @@ dependencies {
|
||||
implementation "de.cketti.library.changelog:ckchangelog:1.2.2"
|
||||
implementation "net.e175.klaus:solarpositioning:0.0.9"
|
||||
implementation "co.nstant.in:cbor:0.9"
|
||||
// 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.
|
||||
// use pristine greendao instead of our custom version, since our custom patches
|
||||
// are in the generator only.
|
||||
implementation "org.greenrobot:greendao:2.2.1"
|
||||
implementation "org.apache.commons:commons-lang3:3.7"
|
||||
implementation "org.cyanogenmod:platform.sdk:6.0"
|
||||
|
23
build.gradle
23
build.gradle
@ -19,10 +19,29 @@ buildscript {
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
mavenCentral()
|
||||
def fygRegex = 'nodomain\\.freeyourgadget\\..+'
|
||||
|
||||
maven {
|
||||
url 'https://codeberg.org/api/packages/freeyourgadget/maven'
|
||||
content {
|
||||
includeGroupByRegex fygRegex
|
||||
}
|
||||
}
|
||||
mavenCentral() {
|
||||
content {
|
||||
excludeGroupByRegex fygRegex
|
||||
}
|
||||
}
|
||||
maven {
|
||||
url 'https://jitpack.io'
|
||||
content {
|
||||
excludeGroupByRegex fygRegex
|
||||
}
|
||||
}
|
||||
google() {
|
||||
content {
|
||||
excludeGroupByRegex fygRegex
|
||||
}
|
||||
}
|
||||
google()
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user