| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- plugins {
- id 'java'
- }
- group 'cz.senslog'
- version '1.2'
- //version '1.3-SNAPSHOT'
- sourceCompatibility = 1.8
- repositories {
- mavenCentral()
- mavenLocal()
- }
- test {
- useJUnitPlatform()
- }
- jar {
- manifest {
- attributes(
- 'Main-Class': 'cz.senslog.analyzer.app.Main'
- )
- }
- from {
- configurations.runtimeClasspath.collect { it.isDirectory() ? it : zipTree(it) }
- }
- }
- dependencies {
- testCompile group: 'org.junit.jupiter', name: 'junit-jupiter', version: '5.6.0'
- testCompile group: 'org.mockito', name: 'mockito-core', version: '3.6.28'
- compile group: 'com.beust', name: 'jcommander', version: '1.78'
- compile group: 'com.google.code.gson', name: 'gson', version: '2.8.9'
- implementation group: 'org.yaml', name: 'snakeyaml', version: '1.29'
- implementation group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.13'
- implementation group: 'org.everit.json', name: 'org.everit.json.schema', version: '1.5.1'
- compile group: 'io.vertx', name: 'vertx-core', version: '4.2.1'
- compile group: 'io.vertx', name: 'vertx-web', version: '4.2.1'
- compile group: 'org.apache.logging.log4j', name: 'log4j-slf4j-impl', version: '2.13.1'
- compile group: 'org.jdbi', name: 'jdbi3-postgres', version: '3.12.2'
- compile group: 'org.jdbi', name: 'jdbi3-jodatime2', version: '3.12.2'
- compile group: 'com.zaxxer', name: 'HikariCP', version: '3.4.2'
- compile group: 'org.postgresql', name: 'postgresql', version: '42.2.10'
- compile group: 'com.h2database', name: 'h2', version: '1.4.200'
- implementation 'com.google.dagger:dagger:2.40.1'
- annotationProcessor 'com.google.dagger:dagger-compiler:2.40.1'
- }
|