project creation

This commit is contained in:
Mathieu Gabriel 2018-08-11 20:06:07 +02:00 committed by GitHub
parent c912a365a1
commit 06df29ae4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 28 additions and 0 deletions

28
build.gradle Normal file
View File

@ -0,0 +1,28 @@
apply plugin: 'java'
apply plugin: 'eclipse'
apply plugin: 'idea'
sourceCompatibility = 1.8
buildscript {
repositories {
mavenCentral()
jcenter()
}
}
group 'com.mgabriel'
def chronicleVersion = '4.6.77'
def reactorVersion = '3.1.7.RELEASE'
dependencies {
compile "io.projectreactor:reactor-core:$reactorVersion"
compile "net.openhft:chronicle-queue:$chronicleVersion"
}