1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-02 03:16:07 +02:00
Gadgetbridge/GBDaoGenerator/build.gradle

33 lines
698 B
Groovy
Raw Normal View History

2016-03-27 22:13:06 +02:00
apply plugin: 'java'
2019-02-11 21:00:47 +01:00
apply plugin: 'maven'
2016-03-27 22:13:06 +02:00
apply plugin:'application'
archivesBaseName = 'gadgetbridge-daogenerator'
//version = '0.9.2-SNAPSHOT'
dependencies {
2020-08-02 03:56:40 +02:00
// implementation 'org.greenrobot:greendao-generator:2.2.0'
// implementation project(":DaoGenerator")
implementation 'com.github.Freeyourgadget:greendao:1998d7cd2d21f662c6044f6ccf3b3a251bbad341'
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
}