GadgetBridge/GBDaoGenerator/build.gradle

29 lines
524 B
Groovy
Raw Normal View History

2016-03-27 22:13:06 +02:00
apply plugin: 'java'
//apply plugin: 'maven'
apply plugin:'application'
archivesBaseName = 'gadgetbridge-daogenerator'
//version = '0.9.2-SNAPSHOT'
dependencies {
compile 'de.greenrobot:greendao-generator:2.1.0'
}
sourceSets {
main {
java {
srcDir 'src'
srcDir 'src-gen'
}
}
}
task (genSources, type: JavaExec) {
main = "nodomain.freeyourgadget.gadgetbridge.daogen.GBDaoGenerator"
classpath = sourceSets.main.runtimeClasspath
}
artifacts {
archives jar
}