mirror of
https://codeberg.org/Freeyourgadget/Gadgetbridge
synced 2024-11-08 03:07:04 +01:00
70eaca8883
- for now, use a custom version of greendao with the fix 39ac07be550c5f5b6fd265c8870f58015c95e908 - use a superclass for activity sample classes that provides value normalization using SampleProvider
32 lines
640 B
Groovy
32 lines
640 B
Groovy
apply plugin: 'java'
|
|
//apply plugin: 'maven'
|
|
apply plugin:'application'
|
|
|
|
archivesBaseName = 'gadgetbridge-daogenerator'
|
|
//version = '0.9.2-SNAPSHOT'
|
|
|
|
dependencies {
|
|
// compile 'org.greenrobot:greendao-generator:2.2.0'
|
|
compile 'com.github.freeyourgadget:greendao:c3830951e5dd3d1e63d7bac600d5f773b81df363'
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
java {
|
|
srcDir 'src'
|
|
}
|
|
}
|
|
}
|
|
|
|
mainClassName = "nodomain.freeyourgadget.gadgetbridge.daogen.GBDaoGenerator"
|
|
|
|
task genSources(type: JavaExec) {
|
|
main = mainClassName
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
workingDir = '../'
|
|
}
|
|
|
|
artifacts {
|
|
archives jar
|
|
}
|