1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-19 19:40:22 +02:00
Gadgetbridge/GBDaoGenerator/build.gradle

32 lines
640 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 'org.greenrobot:greendao-generator:2.2.0'
compile 'com.github.freeyourgadget:greendao:c3830951e5dd3d1e63d7bac600d5f773b81df363'
2016-03-27 22:13:06 +02:00
}
sourceSets {
main {
java {
srcDir 'src'
}
}
}
mainClassName = "nodomain.freeyourgadget.gadgetbridge.daogen.GBDaoGenerator"
task genSources(type: JavaExec) {
main = mainClassName
2016-03-27 22:13:06 +02:00
classpath = sourceSets.main.runtimeClasspath
workingDir = '../'
2016-03-27 22:13:06 +02:00
}
artifacts {
archives jar
}