chronicle-flux/build.gradle

54 lines
1.1 KiB
Groovy
Raw Normal View History

2018-08-11 20:06:07 +02:00
buildscript {
repositories {
mavenCentral()
jcenter()
}
}
group 'com.mgabriel'
2018-08-12 21:36:25 +02:00
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
2018-08-15 13:59:40 +02:00
apply plugin: 'jacoco'
2018-08-12 21:36:25 +02:00
sourceCompatibility = 1.8
2018-08-11 20:06:07 +02:00
def chronicleVersion = '4.6.77'
def reactorVersion = '3.1.7.RELEASE'
2018-08-12 21:36:25 +02:00
repositories {
mavenCentral()
}
2018-08-11 20:06:07 +02:00
dependencies {
2018-08-12 21:36:25 +02:00
compile "org.slf4j:slf4j-api:1.7.25"
2018-08-11 20:06:07 +02:00
compile "io.projectreactor:reactor-core:$reactorVersion"
compile "net.openhft:chronicle-queue:$chronicleVersion"
2018-08-15 07:31:44 +02:00
2018-08-13 17:31:45 +02:00
testCompile "com.google.guava:guava:26.0-jre"
2018-08-15 07:31:44 +02:00
testCompile "io.projectreactor:reactor-test:$reactorVersion"
testCompile "org.junit.jupiter:junit-jupiter-api:5.2.0"
testCompile "org.junit.jupiter:junit-jupiter-engine:5.2.0"
testCompile "org.junit.platform:junit-platform-launcher:1.2.0"
2018-08-15 11:32:59 +02:00
testCompile "commons-io:commons-io:2.6"
2018-08-15 07:31:44 +02:00
}
test {
useJUnitPlatform()
2018-08-11 20:06:07 +02:00
}
2018-08-15 13:59:40 +02:00
jacocoTestReport {
reports {
xml.enabled true
xml.destination new File("${buildDir}/reports/jacoco/report.xml")
html.enabled true
csv.enabled false
}
}
2018-08-11 20:06:07 +02:00